You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/KubernetesDependentResource.java
+14-2
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,10 @@ protected R handleUpdate(R actual, R desired, P primary, Context<P> context) {
Copy file name to clipboardexpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/informer/InformerEventSource.java
+25-13
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@
51
51
* </p>
52
52
* <br>
53
53
* <p>
54
-
* 2. Additional API is provided that is ment to be used with the combination of the previous one,
54
+
* 2. Additional API is provided that is meant to be used with the combination of the previous one,
55
55
* and the goal is to filter out events that are the results of updates and creates made by the
56
56
* controller itself. For example if in reconciler a ConfigMaps is created, there should be an
57
57
* Informer in place to handle change events of that ConfigMap, but since it has bean created (or
@@ -113,9 +113,9 @@ public InformerEventSource(InformerConfiguration<R> configuration, KubernetesCli
113
113
@Override
114
114
publicvoidonAdd(RnewResource) {
115
115
if (log.isDebugEnabled()) {
116
-
log.debug("On add event received for resource id: {} type: {}",
116
+
log.debug("On add event received for resource id: {} type: {} version: {}",
0 commit comments