Skip to content

Commit 22f3547

Browse files
authored
fix: change log level of no cr found (operator-framework#873)
It's can happen that after a custom resource deleted, event sources, normally also informers still receive events about dependent resources deleted.
1 parent 2fb0053 commit 22f3547

File tree

1 file changed

+1
-1
lines changed
  • operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event

1 file changed

+1
-1
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/EventProcessor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ private void submitReconciliationExecution(ResourceID resourceID) {
158158
controllerUnderExecution,
159159
latest.isPresent());
160160
if (latest.isEmpty()) {
161-
log.warn("no custom resource found in cache for ResourceID: {}", resourceID);
161+
log.debug("no custom resource found in cache for ResourceID: {}", resourceID);
162162
}
163163
}
164164
} finally {

0 commit comments

Comments
 (0)