forked from TrueCloudLab/frostfs-node
[#631] lens: Fix db type flag name
Typo from 1a0cb0f34a
.
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
23be3eb627
commit
dc3bc08c07
1 changed files with 1 additions and 1 deletions
|
@ -37,6 +37,6 @@ func AddOutputFileFlag(cmd *cobra.Command, v *string) {
|
||||||
|
|
||||||
// AddDBTypeFlag adds the DB type flag to the passed cobra command.
|
// AddDBTypeFlag adds the DB type flag to the passed cobra command.
|
||||||
func AddDBTypeFlag(cmd *cobra.Command, v *string) {
|
func AddDBTypeFlag(cmd *cobra.Command, v *string) {
|
||||||
cmd.Flags().StringVar(v, flagOutFile, "bbolt",
|
cmd.Flags().StringVar(v, flagDBType, "bbolt",
|
||||||
"Type of DB used by write cache (default: bbolt)")
|
"Type of DB used by write cache (default: bbolt)")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue