Skip to content

Commit

Permalink
[FLINK-5806] [runtime] Fix TaskExecutionState toString
Browse files Browse the repository at this point in the history
This closes apache#3319.
  • Loading branch information
shijinkui authored and uce committed Feb 15, 2017
1 parent 5ae9195 commit b065226
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public int hashCode() {

@Override
public String toString() {
return String.format("TaskState jobId=%s, jobID=%s, state=%s, error=%s",
return String.format("TaskExecutionState jobId=%s, executionId=%s, state=%s, error=%s",
jobID, executionId, executionState,
throwable == null ? "(null)" : throwable.toString());
}
Expand Down

0 comments on commit b065226

Please sign in to comment.