Skip to content

Commit

Permalink
Do not wait for checkpoint from previous build
Browse files Browse the repository at this point in the history
Fixes an issue with result archiver getting stuck for a long time in concurrent builds.
A similar issue has been fixed in the JUnit Jenkins plugin:

https://issues.jenkins-ci.org/browse/JENKINS-10234
jenkinsci/jenkins@90ff9f8
  • Loading branch information
Martin Bektchiev committed May 12, 2015
1 parent bc5084d commit 1e89e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/nunit/NUnitPublisher.java
Expand Up @@ -126,7 +126,7 @@ public Action getProjectAction(AbstractProject<?,?> project) {
}

public BuildStepMonitor getRequiredMonitorService() {
return BuildStepMonitor.BUILD;
return BuildStepMonitor.NONE;
}

@Override
Expand Down

0 comments on commit 1e89e02

Please sign in to comment.