alapha23 commented on a change in pull request #187: [NEMO-324] Distinguish
Beam's run and waitUntilFinish methods
URL: https://github.com/apache/incubator-nemo/pull/187#discussion_r265444459
##########
File path: client/src/main/java/org/apache/nemo/client/ClientEndpoint.java
##########
@@ -164,7 +164,8 @@ public final Enum waitUntilJobFinish(final long timeout,
return stateTranslator.translateState(driverEndpoint.get().
waitUntilFinish(timeout - unit.convert(consumedTime,
TimeUnit.NANOSECONDS), unit));
} else {
- return PlanState.State.READY;
+ // This default value needs double checking.
+ return stateTranslator.translateState(PlanState.State.READY);
Review comment:
Could you please indicate why we are changing the return type here please?
As far as I could infer,
`stateTranslator.translateState(PlanState.State.READY)` equals `RUNNING`
defined at `PipelineResult.java`while `PlanState.State.READY` equals `READY`
defined at `PlanState.java`
I do not understand why we are changing here. And where is this function
used please?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services