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 838ed0d commit 83960c0Copy full SHA for 83960c0
integration-tests/src/test/java/oracle/kubernetes/operator/ITSessionMigration.java
@@ -63,7 +63,9 @@ public static void staticPrepare() throws Exception {
63
// create domain
64
if (domain == null) {
65
logger.info("Creating WLS Domain & waiting for the script to complete execution");
66
- domain = TestUtils.createDomain(DOMAINONPV_WLST_YAML);
+ Map<String, Object> wlstDomainMap = TestUtils.loadYaml(DOMAINONPV_WLST_YAML);
67
+ wlstDomainMap.put("domainUID", "sessmigdomainonpvwlst");
68
+ domain = TestUtils.createDomain(wlstDomainMap);
69
domain.verifyDomainCreated();
70
}
71
0 commit comments