Skip to content

Commit

Permalink
Merge pull request #29 from jglick/AbstractSynchronousNonBlockingStep…
Browse files Browse the repository at this point in the history
…Execution-JENKINS-37538

[JENKINS-37538] Should use AbstractSynchronousNonBlockingStepExecution
  • Loading branch information
jglick committed Aug 26, 2016
2 parents 281e8b2 + a17edf5 commit b6d7978
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 b6d7978

Please sign in to comment.