Skip to content

Commit

Permalink
Fixed Bug Flink-978
Browse files Browse the repository at this point in the history
https://issues.apache.org/jira/browse/FLINK-978

Author: Jonathan <[email protected]>

Closes apache#46 from JonathanH5/fixWebI and squashes the following commits:

13a7d41 [Jonathan] Fixed Bug Flink-978
  • Loading branch information
MoeweX authored and rmetzger committed Jun 26, 2014
1 parent 47239b2 commit 69589fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public String toJson() {
json.append("\"vertexid\": \"" + this.getID() + "\",");
json.append("\"vertexname\": \"" + StringUtils.escapeHtml(this.toString()) + "\",");
json.append("\"vertexstatus\": \"" + this.getExecutionState() + "\",");
json.append("\"vertexinstancename\": \"" + this.getInstanceName() + "\",");
json.append("\"vertexinstancename\": \"" + this.getInstanceName() + "\"");
json.append("}");
return json.toString();
}
Expand Down

0 comments on commit 69589fa

Please sign in to comment.