We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 014fff3 commit 46bfb80Copy full SHA for 46bfb80
operator-framework/src/main/java/com/github/containersolutions/operator/processing/EventScheduler.java
@@ -80,9 +80,8 @@ void scheduleEvent(CustomResourceEvent event) {
80
try {
81
lock.lock();
82
if (event.getAction() == Action.DELETED) {
83
+ // we might want to have a state check here that only an event is scheduled for delete.
84
log.debug("Received delete action for event: {}", event);
- //
85
- // should we still check if its a retry for a "marked for deletion" modification event?
86
return;
87
}
88
if (eventStore.processedNewerVersionBefore(event)) {
0 commit comments