From c9887c17cf47591c3e00b14ebbe16f2a51e730f2 Mon Sep 17 00:00:00 2001 From: Thomas Schweiger Date: Thu, 30 Apr 2026 13:13:20 +0200 Subject: [PATCH] fix: remove typo in error message --- services/search/pkg/opensearch/index.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/search/pkg/opensearch/index.go b/services/search/pkg/opensearch/index.go index 80c6fe11bf..6f10b23c3d 100644 --- a/services/search/pkg/opensearch/index.go +++ b/services/search/pkg/opensearch/index.go @@ -118,7 +118,7 @@ func (m IndexManager) Apply(ctx context.Context, name string, client *opensearch if errs != nil { return fmt.Errorf( - "index %s allready exists and is different from the requested version, %w: %w", + "index %s already exists and is different from the requested version, %w: %w", name, ErrManualActionRequired, errors.Join(errs...),