wangyang0918 commented on a change in pull request #48:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/48#discussion_r822568654
##########
File path:
flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/reconciler/JobReconciler.java
##########
@@ -76,14 +78,15 @@ public JobReconciler(
IngressUtils.updateIngressRules(
flinkApp, effectiveConfig, operatorNamespace,
kubernetesClient, false);
ReconciliationUtils.updateForSpecReconciliationSuccess(flinkApp);
- return JobManagerDeploymentStatus.DEPLOYING.toUpdateControl(
- flinkApp, operatorConfiguration);
+ return;
+ }
+
+ if (SavepointUtils.savepointInProgress(flinkApp)) {
+ return;
Review comment:
It will be great if we have a log here. Then users will know clearly the
reconciliation is delayed because of savepoint is in progress.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]