mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Mask join tokens in daemon logs
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
parent
404705fd8e
commit
e3917c76ce
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ func maskSecretKeys(inp interface{}) {
|
|||
if form, ok := inp.(map[string]interface{}); ok {
|
||||
loop0:
|
||||
for k, v := range form {
|
||||
for _, m := range []string{"password", "secret"} {
|
||||
for _, m := range []string{"password", "secret", "jointoken"} {
|
||||
if strings.EqualFold(m, k) {
|
||||
form[k] = "*****"
|
||||
continue loop0
|
||||
|
|
Loading…
Reference in a new issue