Browse Source

fix error parsing env values (#2886)

pull/2891/head
fatedier 3 years ago committed by GitHub
parent
commit
a7a4ba270d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      pkg/config/value.go

6
pkg/config/value.go

@ -29,11 +29,11 @@ func init() {
glbEnvs = make(map[string]string) glbEnvs = make(map[string]string)
envs := os.Environ() envs := os.Environ()
for _, env := range envs { for _, env := range envs {
kv := strings.Split(env, "=") pair := strings.SplitN(env, "=", 2)
if len(kv) != 2 { if len(pair) != 2 {
continue continue
} }
glbEnvs[kv[0]] = kv[1] glbEnvs[pair[0]] = pair[1]
} }
} }

Loading…
Cancel
Save