Show a better error msg when internal data encryption key is incorrect (#16549)

This commit is contained in:
Anis Elleuch
2023-02-07 14:22:54 +01:00
committed by GitHub
parent 0319ae756a
commit 095b518802
5 changed files with 14 additions and 21 deletions

View File

@@ -465,7 +465,7 @@ func initConfigSubsystem(ctx context.Context, newObject ObjectLayer) error {
}
// Any other config errors we simply print a message and proceed forward.
logger.LogIf(ctx, fmt.Errorf("Unable to initialize config, some features may be missing %w", err))
logger.LogIf(ctx, fmt.Errorf("Unable to initialize config, some features may be missing: %w", err))
}
return nil