[#631] lens: Fix db type flag name

Typo from 1a0cb0f34a.

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
fix/check_session_issuer
Evgenii Stratonikov 2023-08-21 20:06:15 +03:00 committed by Evgenii Stratonikov
parent 23be3eb627
commit dc3bc08c07
1 changed files with 1 additions and 1 deletions

View File

@ -37,6 +37,6 @@ func AddOutputFileFlag(cmd *cobra.Command, v *string) {
// AddDBTypeFlag adds the DB type flag to the passed cobra command.
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)")
}