File tree Expand file tree Collapse file tree
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4444import io .javaoperatorsdk .operator .processing .dependent .kubernetes .KubernetesDependentResourceConfig ;
4545import io .javaoperatorsdk .operator .processing .dependent .workflow .ManagedWorkflowFactory ;
4646import io .javaoperatorsdk .operator .processing .event .source .controller .ControllerEventSource ;
47+ import io .javaoperatorsdk .operator .processing .event .source .informer .pool .DefaultInformerPool ;
4748import io .javaoperatorsdk .operator .processing .event .source .informer .pool .InformerPool ;
4849
4950/** An interface from which to retrieve configuration information. */
@@ -496,5 +497,7 @@ default boolean cloneSecondaryResourcesWhenGettingFromCache() {
496497 @ Experimental (
497498 "Only the configuration API around informer pooling could still change in a"
498499 + " non-backwards-compatible way, the pooling itself is prod ready." )
499- InformerPool informerPool ();
500+ default InformerPool informerPool () {
501+ return new DefaultInformerPool ();
502+ }
500503}
You can’t perform that action at this time.
0 commit comments