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 fae8366 commit a7c0357Copy full SHA for a7c0357
integration-tests/src/test/java/oracle/kubernetes/operator/utils/Domain.java
@@ -466,7 +466,7 @@ private void callWebAppAndWaitTillReady(String curlCmd) throws Exception {
466
private void callWebAppAndCheckForServerNameInResponse(String curlCmd) throws Exception {
467
// map with server names and boolean values
468
HashMap<String, Boolean> managedServers = new HashMap<String, Boolean>();
469
- for (int i = 1; i <= initialManagedServerReplicas; i++) {
+ for (int i = 1; i <= TestUtils.getClusterReplicas(domainUid, clusterName, domainNS); i++) {
470
managedServers.put(domainUid + "-" + managedServerNameBase + i, new Boolean(false));
471
}
472
0 commit comments