morhidi commented on code in PR #239: URL: https://github.com/apache/flink-kubernetes-operator/pull/239#discussion_r882895802
########## flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/informer/InformerManager.java: ########## @@ -39,21 +43,24 @@ public class InformerManager { private final KubernetesClient kubernetesClient; private volatile Map<String, SharedIndexInformer<FlinkSessionJob>> sessionJobInformers; private volatile Map<String, SharedIndexInformer<FlinkDeployment>> flinkDepInformers; + public static final String CLUSTER_ID_INDEX = "clusterId_index"; public InformerManager(Set<String> watchedNamespaces, KubernetesClient kubernetesClient) { this.watchedNamespaces = watchedNamespaces; this.kubernetesClient = kubernetesClient; LOG.info( "Created informer manager with watchedNamespaces: {}", watchedNamespaces.isEmpty() - ? "[" + OperatorUtils.ALL_NAMESPACE + "]" + ? "[" + Constants.WATCH_ALL_NAMESPACES + "]" : watchedNamespaces); } public SharedIndexInformer<FlinkSessionJob> getSessionJobInformer(String namespace) { Review Comment: Yes, you're correct -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org