File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import (
12
12
13
13
type Predicates interface {
14
14
IgnoreNamespacePredicate (obj client.Object ) bool
15
- IgnoreIgnoredObjectPredicate (obj client.Object ) bool
15
+ IgnoreObjectPredicate (obj client.Object ) bool
16
16
IgnoreUpdate (e event.UpdateEvent ) bool
17
17
}
18
18
@@ -67,7 +67,7 @@ func (c *CommonPredicates) IgnoreNamespacePredicate(obj client.Object) bool {
67
67
//
68
68
// This function should be called within the create or update predicate to ensure that the namespaces with the
69
69
// ignore annotation are properly filtered before reconciliation takes place.
70
- func (c * CommonPredicates ) IgnoreIgnoredObjectPredicate (obj client.Object ) bool {
70
+ func (c * CommonPredicates ) IgnoreObjectPredicate (obj client.Object ) bool {
71
71
var log = c .Log .WithName ("predicates" )
72
72
73
73
if ignoredStatus := obj .GetAnnotations ()[c .IgnoreAnnotation ]; ignoredStatus == "true" {
You can’t perform that action at this time.
0 commit comments