Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
| ... | ... |
@@ -64,7 +64,7 @@ func maskSecretKeys(inp interface{}) {
|
| 64 | 64 |
if form, ok := inp.(map[string]interface{}); ok {
|
| 65 | 65 |
loop0: |
| 66 | 66 |
for k, v := range form {
|
| 67 |
- for _, m := range []string{"password", "secret"} {
|
|
| 67 |
+ for _, m := range []string{"password", "secret", "jointoken"} {
|
|
| 68 | 68 |
if strings.EqualFold(m, k) {
|
| 69 | 69 |
form[k] = "*****" |
| 70 | 70 |
continue loop0 |