We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d01180 commit 35c6660Copy full SHA for 35c6660
integration-tests/src/test/java/oracle/kubernetes/operator/utils/TestUtils.java
@@ -1222,7 +1222,7 @@ public static void buildDeployWebServiceAppInPod(
1222
String archiveExt = "war";
1223
String infoDirName = initInfoDirName;
1224
String domainNS = domain.getDomainNS();
1225
- String managedServerPort = (String) domain.getDomainMap().get("managedServerPort");
+ int managedServerPort = ((Integer) (domain.getDomainMap()).get("managedServerPort")).intValue();
1226
String wsServiceName = (args.length == 0) ? BaseTest.TESTWSSERVICE : args[0];
1227
String clusterDNS =
1228
domain.getDomainUid()
0 commit comments