File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator/utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -531,7 +531,7 @@ public void stopUsingReplicas() throws Exception {
531
531
String cmd = "kubectl scale --replicas=0 deployment/weblogic-operator" + " -n " + operatorNS ;
532
532
logger .info ("Undeploy Operator using command:\n " + cmd );
533
533
534
- ExecResult result = ExecCommand .exec (cmd );
534
+ ExecResult result = TestUtils .exec (cmd );
535
535
536
536
logger .info ("stdout : \n " + result .stdout ());
537
537
@@ -548,7 +548,7 @@ public void startUsingReplicas() throws Exception {
548
548
String cmd = "kubectl scale --replicas=1 deployment/weblogic-operator" + " -n " + operatorNS ;
549
549
logger .info ("Deploy Operator using command:\n " + cmd );
550
550
551
- ExecResult result = ExecCommand .exec (cmd );
551
+ ExecResult result = TestUtils .exec (cmd );
552
552
553
553
logger .info ("Checking if operator pod is running" );
554
554
verifyPodCreated ();
You can’t perform that action at this time.
0 commit comments