File tree 2 files changed +1
-8
lines changed
src/main/java/org/jenkinsci/plugins/workflow/support/steps
2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change 94
94
<dependency >
95
95
<groupId >org.jenkins-ci.plugins.workflow</groupId >
96
96
<artifactId >workflow-api</artifactId >
97
+ <version >1199.v597ffe744637</version > <!-- TODO https://github.com/jenkinsci/workflow-api-plugin/pull/256 -->
97
98
</dependency >
98
99
<dependency >
99
100
<groupId >org.jenkins-ci.plugins.workflow</groupId >
Original file line number Diff line number Diff line change 29
29
import hudson .Extension ;
30
30
import hudson .FilePath ;
31
31
import hudson .Util ;
32
- import hudson .init .InitMilestone ;
33
32
import hudson .model .Computer ;
34
33
import hudson .model .Executor ;
35
34
import hudson .model .Node ;
@@ -89,13 +88,6 @@ void resume(StepContext context) throws Exception {
89
88
if (executor != null ) {
90
89
throw new IllegalStateException ("Already resumed" );
91
90
}
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
- }
99
91
Queue .Item item = Queue .getInstance ().schedule2 (task , 0 ).getItem ();
100
92
if (item == null ) {
101
93
// TODO should also report when !ScheduleResult.created, since that is arguably an error
You can’t perform that action at this time.
0 commit comments