File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
internal/controller/common Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ require (
111111 go.uber.org/multierr v1.11.0 // indirect
112112 golang.org/x/crypto v0.36.0 // indirect
113113 golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
114- golang.org/x/net v0.37 .0 // indirect
114+ golang.org/x/net v0.38 .0 // indirect
115115 golang.org/x/oauth2 v0.21.0 // indirect
116116 golang.org/x/sync v0.12.0 // indirect
117117 golang.org/x/sys v0.32.0 // indirect
Original file line number Diff line number Diff line change @@ -336,6 +336,8 @@ golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qx
336336golang.org/x/net v0.0.0-20220722155237-a158d28d115b /go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c =
337337golang.org/x/net v0.37.0 h1:1zLorHbz+LYj7MQlSf1+2tPIIgibq2eL5xkrGk6f+2c =
338338golang.org/x/net v0.37.0 /go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8 =
339+ golang.org/x/net v0.38.0 h1:vRMAPTMaeGqVhG5QyLJHqNDwecKTomGeqbnfZyKlBI8 =
340+ golang.org/x/net v0.38.0 /go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8 =
339341golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be /go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U =
340342golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d /go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw =
341343golang.org/x/oauth2 v0.21.0 h1:tsimM75w1tF/uws5rbeHzIWxEqElMehnc+iW793zsZs =
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ func LabelChangedPredicate() predicate.Predicate {
3030func GenerationChangedPredicate () predicate.Predicate {
3131 return predicate.Funcs {
3232 UpdateFunc : func (e event.UpdateEvent ) bool {
33- return ! reflect .DeepEqual (e .ObjectOld .GetGeneration (), e .ObjectNew .GetGeneration ())
33+ return ! reflect .DeepEqual (e .ObjectOld .GetGeneration (), e .ObjectNew .GetGeneration ())
3434 },
3535 DeleteFunc : func (e event.DeleteEvent ) bool {
3636 // Evaluates to false if the object has been confirmed deleted.
You can’t perform that action at this time.
0 commit comments