gyfora commented on code in PR #978: URL: https://github.com/apache/flink-kubernetes-operator/pull/978#discussion_r2077391238
########## flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/reconciler/deployment/ApplicationReconciler.java: ########## @@ -299,9 +303,92 @@ public boolean reconcileOtherChanges(FlinkResourceContext<FlinkDeployment> ctx) return true; } + // check for JobManager exceptions if the REST API server is still up. + if (!ReconciliationUtils.isJobInTerminalState(deployment.getStatus())) { + observeJobManagerExceptions(ctx, deployment, observeConfig); Review Comment: Feels like the exception observation logic should be part of the observer and not the reconciler. The method names and everything points to that. No action is taken here, the job is not modified etc just observed. -- 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