Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-37538] Should use AbstractSynchronousNonBlockingStepExecutio…
…n since we are running blocking SCM operations.
  • Loading branch information
jglick committed Aug 24, 2016
1 parent 281e8b2 commit a17edf5
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -49,7 +49,7 @@
import org.jenkinsci.plugins.workflow.job.WorkflowJob;
import org.jenkinsci.plugins.workflow.steps.AbstractStepDescriptorImpl;
import org.jenkinsci.plugins.workflow.steps.AbstractStepImpl;
import org.jenkinsci.plugins.workflow.steps.AbstractSynchronousStepExecution;
import org.jenkinsci.plugins.workflow.steps.AbstractSynchronousNonBlockingStepExecution;
import org.jenkinsci.plugins.workflow.steps.StepContextParameter;
import org.jenkinsci.plugins.workflow.steps.scm.GenericSCMStep;
import org.jenkinsci.plugins.workflow.steps.scm.SCMStep;
Expand All @@ -75,7 +75,7 @@ public String getPath() {
return path;
}

public static class Execution extends AbstractSynchronousStepExecution<String> {
public static class Execution extends AbstractSynchronousNonBlockingStepExecution<String> {

@Inject private transient ReadTrustedStep step;
@StepContextParameter private transient Run<?,?> build;
Expand Down

0 comments on commit a17edf5

Please sign in to comment.