From 1f52899a9bdbee67d038bba5e06baaec553afad6 Mon Sep 17 00:00:00 2001 From: jaoki Date: Mon, 16 Nov 2015 00:55:01 -0800 Subject: [PATCH] [hotfix] [runtime] Minor javadoc fix in JobManager This closes #1358 JobExecutionVertices should be ExecutionJobVertices? I found it while I have been drawing a Flink local execution diagram. It is still a half way but let me know if you have any feedback. https://docs.google.com/drawings/d/1lZg8LkhAlI5lMc2EGCPlYArBmv7cCj-By-phuG6rGE8/edit --- .../scala/org/apache/flink/runtime/jobmanager/JobManager.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flink-runtime/src/main/scala/org/apache/flink/runtime/jobmanager/JobManager.scala b/flink-runtime/src/main/scala/org/apache/flink/runtime/jobmanager/JobManager.scala index 567e67b4be569..3fad676243449 100644 --- a/flink-runtime/src/main/scala/org/apache/flink/runtime/jobmanager/JobManager.scala +++ b/flink-runtime/src/main/scala/org/apache/flink/runtime/jobmanager/JobManager.scala @@ -80,7 +80,7 @@ import scala.language.postfixOps * * - [[SubmitJob]] is sent by a client which wants to submit a job to the system. The submit * message contains the job description in the form of the JobGraph. The JobGraph is appended to - * the ExecutionGraph and the corresponding JobExecutionVertices are scheduled for execution on + * the ExecutionGraph and the corresponding ExecutionJobVertices are scheduled for execution on * the TaskManagers. * * - [[CancelJob]] requests to cancel the job with the specified jobID. A successful cancellation