aljoscha commented on a change in pull request #9607: [FLINK-13946] Remove job
session related code from ExecutionEnvironment
URL: https://github.com/apache/flink/pull/9607#discussion_r320775256
##########
File path:
flink-clients/src/main/java/org/apache/flink/client/program/ContextEnvironment.java
##########
@@ -72,15 +71,9 @@ public String getExecutionPlan() throws Exception {
return gen.getOptimizerPlanAsJSON(op);
}
- @Override
- public void startNewSession() throws Exception {
- jobID = JobID.generate();
- }
-
@Override
public String toString() {
- return "Context Environment (parallelism = " +
(getParallelism() == ExecutionConfig.PARALLELISM_DEFAULT ? "default" :
getParallelism())
- + ") : " + getIdString();
+ return "Context Environment (parallelism = " +
(getParallelism() == ExecutionConfig.PARALLELISM_DEFAULT ? "default" :
getParallelism()) + ").";
Review comment:
I wouldn't put a `.` here, I don't think it's a sentence
----------------------------------------------------------------
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