satisfy linter

This commit is contained in:
2026-07-07 10:24:59 +02:00
parent 2f77c27715
commit 02fe22b18f
2 changed files with 4 additions and 2 deletions

View File

@@ -32,6 +32,8 @@ func esErrorString(err error) error {
var causes strings.Builder
for _, cause := range e.ErrorCause.RootCause {
// FIXME: re-activate linter here, see https://github.com/golangci/golangci-lint/issues/6662
//nolint:all
causes.WriteString(fmt.Sprintf("%s\n", *cause.Reason))
}