Skip to content

Commit

Permalink
chore(core): Adding stage.toString() (#3209)
Browse files Browse the repository at this point in the history
* chore(core): Adding stage.toString()

- added a toString method with the stage id & execution id

* - PR feedback
  • Loading branch information
jeyrschabu committed Oct 7, 2019
1 parent 96f322e commit 967ed79
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -799,5 +799,10 @@ public List<Stage> downstreamStages() {
.collect(toList());
}

@Override
public String toString() {
return "Stage {id='" + id + "', executionId='" + execution.getId() + "'}";
}

public static final String STAGE_TIMEOUT_OVERRIDE_KEY = "stageTimeoutMs";
}

0 comments on commit 967ed79

Please sign in to comment.