Skip to content

Commit 868bc47

Browse files
committed
jenkins-ignore change to use exec in TestUtils
1 parent ffec97a commit 868bc47

File tree

1 file changed

+2
-2
lines changed
  • integration-tests/src/test/java/oracle/kubernetes/operator/utils

1 file changed

+2
-2
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/utils/Operator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ public void stopUsingReplicas() throws Exception {
531531
String cmd = "kubectl scale --replicas=0 deployment/weblogic-operator" + " -n " + operatorNS;
532532
logger.info("Undeploy Operator using command:\n" + cmd);
533533

534-
ExecResult result = ExecCommand.exec(cmd);
534+
ExecResult result = TestUtils.exec(cmd);
535535

536536
logger.info("stdout : \n" + result.stdout());
537537

@@ -548,7 +548,7 @@ public void startUsingReplicas() throws Exception {
548548
String cmd = "kubectl scale --replicas=1 deployment/weblogic-operator" + " -n " + operatorNS;
549549
logger.info("Deploy Operator using command:\n" + cmd);
550550

551-
ExecResult result = ExecCommand.exec(cmd);
551+
ExecResult result = TestUtils.exec(cmd);
552552

553553
logger.info("Checking if operator pod is running");
554554
verifyPodCreated();

0 commit comments

Comments
 (0)