Skip to content

Commit d27d5b8

Browse files
committed
wip
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 9bc9ff1 commit d27d5b8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/AbstractUpdateControl.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ public abstract class AbstractUpdateControl<T extends BaseControl<T>> extends Ba
1919

2020
private boolean filterPatchEvent = true;
2121

22+
/**
23+
* The event from resource primary updates are filtered by default, thus does not trigger the
24+
* reconciliation. Setting this to false will turn the filtering off.
25+
*
26+
* @since 5.3.0
27+
*/
2228
public T filterPatchEvent(boolean filterPatchEvent) {
2329
this.filterPatchEvent = filterPatchEvent;
2430
return (T) this;

0 commit comments

Comments
 (0)