Skip to content

Commit

Permalink
Merge pull request #9382 from gyuho/flag
Browse files Browse the repository at this point in the history
pkg/flags: fatal on conflicting environment variable
  • Loading branch information
gyuho committed Mar 2, 2018
2 parents dbdab24 + 748ab8c commit 064aeb2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
4 changes: 1 addition & 3 deletions pkg/flags/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,7 @@ func verifyEnv(prefix string, usedEnvKey, alreadySet map[string]bool) {
continue
}
if alreadySet[kv[0]] {
// TODO: exit with error in v3.4
plog.Warningf("recognized environment variable %s, but unused: shadowed by corresponding flag", kv[0])
continue
plog.Fatalf("conflicting environment variable %q is shadowed by corresponding command-line flag (either unset environment variable or disable flag)", kv[0])
}
if strings.HasPrefix(env, prefix+"_") {
plog.Warningf("unrecognized environment variable %s", env)
Expand Down
7 changes: 0 additions & 7 deletions pkg/flags/flag_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,11 @@ func TestSetFlagsFromEnv(t *testing.T) {
if err := fs.Set("b", "bar"); err != nil {
t.Fatal(err)
}
// command-line flags take precedence over env vars
os.Setenv("ETCD_C", "woof")
if err := fs.Set("c", "quack"); err != nil {
t.Fatal(err)
}

// first verify that flags are as expected before reading the env
for f, want := range map[string]string{
"a": "",
"b": "bar",
"c": "quack",
} {
if got := fs.Lookup(f).Value.String(); got != want {
t.Fatalf("flag %q=%q, want %q", f, got, want)
Expand All @@ -59,7 +53,6 @@ func TestSetFlagsFromEnv(t *testing.T) {
for f, want := range map[string]string{
"a": "foo",
"b": "bar",
"c": "quack",
} {
if got := fs.Lookup(f).Value.String(); got != want {
t.Errorf("flag %q=%q, want %q", f, got, want)
Expand Down

0 comments on commit 064aeb2

Please sign in to comment.