We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32269d0 commit 6737abdCopy full SHA for 6737abd
secretsource/hook.go
@@ -64,6 +64,6 @@ func recursiveReplace(v any, replacer *strings.Replacer) any {
64
case time.Duration:
65
return v
66
}
67
- // replace this with a log after more testing
68
- panic(fmt.Sprintf("Had a logrus.fields value with type %T, please report that this is unsupported", v))
+ return fmt.Sprintf("Had a logrus.fields value with type %T, "+
+ "please report that this is unsupported and will be redacted in all logs in case it containing secrets", v)
69
0 commit comments