Skip to content

Commit 45fa325

Browse files
authored
[chore] wrapped filter error (#747)
Signed-off-by: Stepan Paksashvili <stepan.paksashvili@flant.com>
1 parent f183c38 commit 45fa325

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/dominikbraun/graph v0.23.0
1111
github.com/ettle/strcase v0.2.0
1212
github.com/flant/kube-client v1.6.0
13-
github.com/flant/shell-operator v1.15.0
13+
github.com/flant/shell-operator v1.15.1
1414
github.com/go-chi/chi/v5 v5.2.3
1515
github.com/go-openapi/loads v0.23.1
1616
github.com/go-openapi/spec v0.22.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,8 @@ github.com/flant/kube-client v1.6.0 h1:g6ksfIgTlrvLgp/Iu1a9c5aC4yPClLplq3w9e/qtY
163163
github.com/flant/kube-client v1.6.0/go.mod h1:dYJyx7aMldXR/F8hlhRxlcEhSkxKcMZV2Oz8d+o/Up4=
164164
github.com/flant/shell-operator v1.15.0 h1:GLk1OzcWNxEDNBFDerwqZdSY8jlGA/12j0GjwFW3yY4=
165165
github.com/flant/shell-operator v1.15.0/go.mod h1:+dzZnSxYJCdIsV9Eo3uYNb9Q83wYnH2x3wUzbJESAzs=
166+
github.com/flant/shell-operator v1.15.1 h1:jCuifSEw3JS4ZqsDJcKT02yU+hUs+9osdt/JhpbLX1g=
167+
github.com/flant/shell-operator v1.15.1/go.mod h1:+dzZnSxYJCdIsV9Eo3uYNb9Q83wYnH2x3wUzbJESAzs=
166168
github.com/flopp/go-findfont v0.1.0 h1:lPn0BymDUtJo+ZkV01VS3661HL6F4qFlkhcJN55u6mU=
167169
github.com/flopp/go-findfont v0.1.0/go.mod h1:wKKxRDjD024Rh7VMwoU90i6ikQRCr+JTHB5n4Ejkqvw=
168170
github.com/fluxcd/flagger v1.36.1 h1:X2PumtNwZz9YSGaOtZLFm2zAKLgHhFkbNv8beg7ifyc=

pkg/module_manager/module_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ func (mm *ModuleManager) HandleModuleEnableKubernetesBindings(ctx context.Contex
885885
}
886886
})
887887
if err != nil {
888-
return fmt.Errorf("handle enable kubernetes bindings: %w", err)
888+
return fmt.Errorf("handle enable kubernetes bindings for '%s': %w", mh.GetName(), err)
889889
}
890890
}
891891

0 commit comments

Comments
 (0)