You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2016/08/24 21:12:51 UTC

[2/6] flink git commit: [hotfix] Reduce string concatenations in ExecutionVertex

[hotfix] Reduce string concatenations in ExecutionVertex


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/4e45659a
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/4e45659a
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/4e45659a

Branch: refs/heads/master
Commit: 4e45659a5abefbfbd693e3754a19fab57b405427
Parents: 42f65e4
Author: Stephan Ewen <se...@apache.org>
Authored: Wed Aug 24 14:02:25 2016 +0200
Committer: Stephan Ewen <se...@apache.org>
Committed: Wed Aug 24 19:27:29 2016 +0200

----------------------------------------------------------------------
 .../org/apache/flink/runtime/executiongraph/ExecutionVertex.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/4e45659a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionVertex.java
----------------------------------------------------------------------
diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionVertex.java b/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionVertex.java
index 08bf57f..2495316 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionVertex.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionVertex.java
@@ -702,7 +702,7 @@ public class ExecutionVertex {
 	 * @return A simple name representation.
 	 */
 	public String getSimpleName() {
-		return getTaskName() + " (" + (getParallelSubtaskIndex()+1) + '/' + getTotalNumberOfParallelSubtasks() + ')';
+		return taskNameWithSubtask;
 	}
 
 	@Override