Settings: Exclude zanzana client token value from output (#105018)

* Settings: Exclude zanzana client token value from output

* add test

* fix tests
This commit is contained in:
Alexander Zobnin
2025-05-06 18:54:48 +02:00
committed by GitHub
parent de60959b2b
commit dde613bbe8
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -523,6 +523,12 @@ func TestRedactedValue(t *testing.T) {
value: "test",
expected: RedactedPassword,
},
{
desc: "client token",
key: "token",
value: "test",
expected: RedactedPassword,
},
}
for _, tc := range testCases {