Skip to content

Commit

Permalink
[FIXED JENKINS-20979] Do not block on build step monitor. Fixes the s…
Browse files Browse the repository at this point in the history
…erialization issue in concurrently running builds.

This is consistent with the similar fixes in other jenkins plugins. EP-97

Authored by: Slava Gurevich <slavag@altiscale.com>, Adam Berry <adamb@altiscale.com>
  • Loading branch information
adamb-altiscale authored and slavag-altiscale committed May 4, 2015
1 parent e64335e commit 31f0c42
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -64,7 +64,7 @@ public LabeledTestResultGroupPublisher(List<LabeledTestGroupConfiguration> confi
* Declares the scope of the synchronization monitor this {@link hudson.tasks.BuildStep} expects from outside.
*/
public BuildStepMonitor getRequiredMonitorService() {
return BuildStepMonitor.BUILD;
return BuildStepMonitor.NONE;
}

public MatrixAggregator createAggregator(MatrixBuild build, Launcher launcher, BuildListener listener) {
Expand Down

0 comments on commit 31f0c42

Please sign in to comment.