Skip to content

Commit 35c6660

Browse files
committed
fixed method
1 parent 4d01180 commit 35c6660

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1222,7 +1222,7 @@ public static void buildDeployWebServiceAppInPod(
12221222
String archiveExt = "war";
12231223
String infoDirName = initInfoDirName;
12241224
String domainNS = domain.getDomainNS();
1225-
String managedServerPort = (String) domain.getDomainMap().get("managedServerPort");
1225+
int managedServerPort = ((Integer) (domain.getDomainMap()).get("managedServerPort")).intValue();
12261226
String wsServiceName = (args.length == 0) ? BaseTest.TESTWSSERVICE : args[0];
12271227
String clusterDNS =
12281228
domain.getDomainUid()

0 commit comments

Comments
 (0)