Skip commented lines when parsing MinIO configuration file (#14710)

Signed-off-by: Lenin Alevski <alevsk.8772@gmail.com>
This commit is contained in:
Lenin Alevski
2022-04-07 16:02:51 -07:00
committed by GitHub
parent 16431d222c
commit a3e317773a
2 changed files with 30 additions and 0 deletions

View File

@@ -487,6 +487,13 @@ func parsEnvEntry(envEntry string) (envKV, error) {
key := envTokens[0]
val := envTokens[1]
if strings.HasPrefix(key, "#") {
// Skip commented lines
return envKV{
Skip: true,
}, nil
}
// Remove quotes from the value if found
if len(val) >= 2 {
quote := val[0]