We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81cc92f commit 59e2582Copy full SHA for 59e2582
1 file changed
cmd/mpcium/main.go
@@ -405,7 +405,7 @@ func maskString(s string) string {
405
// Check required configuration values are present
406
func checkRequiredConfigValues(appConfig *config.AppConfig) {
407
// Show warning if we're using file-based config but no password is set
408
- if appConfig.BadgerPassword == "" {
+ if viper.GetString("badger_password") == "" {
409
logger.Fatal("Badger password is required", nil)
410
}
411
0 commit comments