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/event/source/polling/PollingEventSource.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
14
14
/**
15
15
* <p>
16
-
* Pols resource (on contrary to {@link PerResourcePollingEventSource}) not per resource bases but
16
+
* Polls resource (on contrary to {@link PerResourcePollingEventSource}) not per resource bases but
17
17
* instead to calls supplier periodically and independently of the number of state of custom
18
18
* resources managed by the operator. It is called on start (synced). This means that when the
19
19
* reconciler first time executed on startup a poll already happened before. So if the cache does
@@ -24,7 +24,7 @@
24
24
* Another caveat with this is if the cached object is checked in the reconciler and created since
25
25
* not in the cache it should be manually added to the cache, since it can happen that the
26
26
* reconciler is triggered before the cache is propagated with the new resource from a scheduled
27
-
* execution. See {@link PollingEventSource##put(ResourceID, Object)}.
27
+
* execution. See {@link #put(ResourceID, Object)} method.
28
28
* </p>
29
29
* So the generic workflow in reconciler should be:
0 commit comments