Skip to content

Commit 84036f7

Browse files
committed
1 parent 4b48432 commit 84036f7

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
<dependency>
9595
<groupId>org.jenkins-ci.plugins.workflow</groupId>
9696
<artifactId>workflow-api</artifactId>
97+
<version>1199.v597ffe744637</version> <!-- TODO https://github.com/jenkinsci/workflow-api-plugin/pull/256 -->
9798
</dependency>
9899
<dependency>
99100
<groupId>org.jenkins-ci.plugins.workflow</groupId>

src/main/java/org/jenkinsci/plugins/workflow/support/steps/ExecutorStepDynamicContext.java

-8
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
import hudson.Extension;
3030
import hudson.FilePath;
3131
import hudson.Util;
32-
import hudson.init.InitMilestone;
3332
import hudson.model.Computer;
3433
import hudson.model.Executor;
3534
import hudson.model.Node;
@@ -89,13 +88,6 @@ void resume(StepContext context) throws Exception {
8988
if (executor != null) {
9089
throw new IllegalStateException("Already resumed");
9190
}
92-
while (Jenkins.get().getInitLevel() != InitMilestone.COMPLETED || Jenkins.get().isQuietingDown()) {
93-
if (Jenkins.get().isTerminating()) {
94-
throw new IllegalStateException("Jenkins is now shutting down");
95-
}
96-
LOGGER.fine(() -> "waiting to schedule task for " + path + " on " + node + " until Jenkins completes startup and is not in quiet mode");
97-
Thread.sleep(100);
98-
}
9991
Queue.Item item = Queue.getInstance().schedule2(task, 0).getItem();
10092
if (item == null) {
10193
// TODO should also report when !ScheduleResult.created, since that is arguably an error

0 commit comments

Comments
 (0)