File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,12 @@ private void submitReconciliationExecution(ResourceState state) {
146146 controllerUnderExecution ,
147147 maybeLatest .isPresent ());
148148 if (maybeLatest .isEmpty ()) {
149- log .debug ("no custom resource found in cache for resource id: {}" , resourceID );
149+ // there can be multiple reasons why the primary resource is not present, one is that the
150+ // informer is currently disconnected from k8s api server, but will eventually receive the
151+ // resource. Other is that simply there is no primary resource present for an event, this
152+ // might indicate issue with the implementation, but could happen also naturally, thus
153+ // this is not necessarily a problem.
154+ log .debug ("no primary resource found in cache with resource id: {}" , resourceID );
150155 }
151156 }
152157 } finally {
You can’t perform that action at this time.
0 commit comments