File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator/utils Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -487,13 +487,18 @@ public void deployWebAppViaWLST(
487
487
adminPod ,
488
488
domainNS );
489
489
490
+ String t3Url = "t3://" + adminPod + ":" ;
491
+ if (useAdminPortToDeploy ) {
492
+ t3Url = t3Url + domainMap .getOrDefault ("adminPort" , 7001 );
493
+ } else {
494
+ t3Url = t3Url + t3ChannelPort ;
495
+ }
496
+
490
497
String [] args = {
491
498
appLocationInPod + "/deploywebapp.py" ,
492
499
BaseTest .getUsername (),
493
500
BaseTest .getPassword (),
494
- useAdminPortToDeploy
495
- ? (domainMap .getOrDefault ("adminPort" , 7001 )).toString ()
496
- : "t3://" + adminPod + ":" + t3ChannelPort ,
501
+ t3Url ,
497
502
webappName ,
498
503
appLocationInPod + "/" + webappName + ".war" ,
499
504
clusterName
You can’t perform that action at this time.
0 commit comments