gyfora commented on a change in pull request #26:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/26#discussion_r817523349
##########
File path:
flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/observer/JobManagerDeploymentStatus.java
##########
@@ -44,12 +44,12 @@
public UpdateControl<FlinkDeployment> toUpdateControl(FlinkDeployment
flinkDeployment) {
switch (this) {
case DEPLOYING:
+ case READY:
return UpdateControl.updateStatus(flinkDeployment)
.rescheduleAfter(REFRESH_SECONDS, TimeUnit.SECONDS);
case DEPLOYED_NOT_READY:
return UpdateControl.updateStatus(flinkDeployment)
.rescheduleAfter(PORT_READY_DELAY_SECONDS,
TimeUnit.SECONDS);
- case READY:
case MISSING:
Review comment:
I would prefer to keep it just for transparency, technically it's not
needed but I think it makes it cleaerer
--
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]