File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
operator/src/main/java/oracle/kubernetes/operator/steps Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -94,10 +94,11 @@ public NextAction apply(Packet packet) {
9494 }
9595
9696 if (!work .isEmpty ()) {
97- return doForkJoin (DomainStatusUpdater .createStatusUpdateStep (getNext ()), packet , work );
97+ return doForkJoin (DomainStatusUpdater .createStatusUpdateStep (
98+ new ManagedServerUpAfterStep (getNext ())), packet , work );
9899 }
99100
100- return doNext (DomainStatusUpdater .createStatusUpdateStep (getNext ()), packet );
101+ return doNext (DomainStatusUpdater .createStatusUpdateStep (new ManagedServerUpAfterStep ( getNext () )), packet );
101102 }
102103
103104
@@ -167,7 +168,7 @@ void add(StepAndPacket serverToStart) {
167168 public NextAction apply (Packet packet ) {
168169
169170 if (startDetailsQueue .isEmpty ()) {
170- return doNext (new ManagedServerUpAfterStep ( getNext () ), packet );
171+ return doNext (getNext (), packet );
171172 } else if (hasServerAvailableToStart (packet .getSpi (DomainPresenceInfo .class ))) {
172173 numStarted .getAndIncrement ();
173174 return doForkJoin (this , packet , Collections .singletonList (startDetailsQueue .poll ()));
You can’t perform that action at this time.
0 commit comments