File tree 1 file changed +6
-1
lines changed
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event
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) {
146
146
controllerUnderExecution ,
147
147
maybeLatest .isPresent ());
148
148
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 );
150
155
}
151
156
}
152
157
} finally {
You can’t perform that action at this time.
0 commit comments