File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
operator/src/main/java/oracle/kubernetes/operator Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -888,14 +888,13 @@ static Step createDomainUpPlan(DomainPresenceInfo info) {
888
888
new DomainStatusStep (info , bringAdminServerUp (info , managedServerStrategy )))));
889
889
890
890
strategy =
891
- new UpHeadStep (
892
- info ,
893
- DomainStatusUpdater .createProgressingStep (
894
- DomainStatusUpdater .INSPECTING_DOMAIN_PROGRESS_REASON ,
895
- true ,
896
- DomainPresenceStep .createDomainPresenceStep (dom , strategy , managedServerStrategy )));
891
+ DomainStatusUpdater .createProgressingStep (
892
+ DomainStatusUpdater .INSPECTING_DOMAIN_PROGRESS_REASON ,
893
+ true ,
894
+ DomainPresenceStep .createDomainPresenceStep (dom , strategy , managedServerStrategy ));
897
895
898
896
return Step .chain (
897
+ new UpHeadStep (info ),
899
898
ConfigMapHelper .readExistingSituConfigMap (info .getNamespace (), info .getDomainUID ()),
900
899
new RegisterStep (info , strategy ));
901
900
}
@@ -912,6 +911,10 @@ static Step createDomainDownPlan(DomainPresenceInfo info) {
912
911
private static class UpHeadStep extends Step {
913
912
private final DomainPresenceInfo info ;
914
913
914
+ public UpHeadStep (DomainPresenceInfo info ) {
915
+ this (info , null );
916
+ }
917
+
915
918
public UpHeadStep (DomainPresenceInfo info , Step next ) {
916
919
super (next );
917
920
this .info = info ;
You can’t perform that action at this time.
0 commit comments