We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea7c7e1 commit a5010e7Copy full SHA for a5010e7
controllers/flinkcluster/flinkcluster_util.go
@@ -525,6 +525,10 @@ func shouldUpdateJob(observed *ObservedClusterState) bool {
525
}
526
527
func shouldUpdateCluster(observed *ObservedClusterState) bool {
528
+ if isScaleUpdate(observed.revisions, observed.cluster) {
529
+ return observed.updateState == UpdateStateInProgress
530
+ }
531
+
532
var job = observed.cluster.Status.Components.Job
533
return !job.IsActive() && observed.updateState == UpdateStateInProgress
534
0 commit comments