mirror of
https://github.com/tailscale/tailscale.git
synced 2025-01-07 08:07:42 +00:00
envknob: use the correct key when logging (#4319)
This commit is contained in:
parent
309ddef852
commit
f4686a76a1
@ -37,7 +37,7 @@ func noteEnv(k, v string) {
|
|||||||
}
|
}
|
||||||
mu.Lock()
|
mu.Lock()
|
||||||
defer mu.Unlock()
|
defer mu.Unlock()
|
||||||
if _, ok := set[v]; !ok {
|
if _, ok := set[k]; !ok {
|
||||||
list = append(list, k)
|
list = append(list, k)
|
||||||
}
|
}
|
||||||
set[k] = v
|
set[k] = v
|
||||||
|
Loading…
x
Reference in New Issue
Block a user