Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #4 from lsbwant/summary_report-1.13-fix-JENKINS-30146
JENKINS-30146 Plugin is hanging builds when running concurrently
  • Loading branch information
deruyter committed Jan 27, 2016
2 parents d7a8741 + c61dc3a commit bb4c0fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -115,7 +115,7 @@ public String getUrlName() {
AbstractBuild<?, ?> lastBuild = project.getLastBuild();
while (lastBuild != null && (lastBuild.isBuilding()
|| lastBuild.getAction(ACIPluginBuildAction.class) == null)) {
lastBuild = lastBuild.getPreviousBuild();
lastBuild = lastBuild.getPreviousCompletedBuild();
}
return lastBuild;
}
Expand Down
Expand Up @@ -175,6 +175,6 @@ public boolean perform(
* Method that returns the status of the service required.
*/
public BuildStepMonitor getRequiredMonitorService() {
return BuildStepMonitor.BUILD;
return BuildStepMonitor.NONE;
}
}

0 comments on commit bb4c0fe

Please sign in to comment.