Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-19801] Include POST_PRODUCTION state into Run.isInProgress()
  • Loading branch information
olivergondza committed Oct 1, 2013
1 parent c7a258e commit e9e5a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/Run.java
Expand Up @@ -471,7 +471,7 @@ public boolean isBuilding() {
* @since TODO
*/
protected boolean isInProgress() {
return state.equals(State.BUILDING);
return state.equals(State.BUILDING) || state.equals(State.POST_PRODUCTION);
}

/**
Expand Down

0 comments on commit e9e5a3a

Please sign in to comment.