Skip to content

Commit 83960c0

Browse files
committed
fixing domainuid for sessionmigration test
1 parent 838ed0d commit 83960c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/ITSessionMigration.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ public static void staticPrepare() throws Exception {
6363
// create domain
6464
if (domain == null) {
6565
logger.info("Creating WLS Domain & waiting for the script to complete execution");
66-
domain = TestUtils.createDomain(DOMAINONPV_WLST_YAML);
66+
Map<String, Object> wlstDomainMap = TestUtils.loadYaml(DOMAINONPV_WLST_YAML);
67+
wlstDomainMap.put("domainUID", "sessmigdomainonpvwlst");
68+
domain = TestUtils.createDomain(wlstDomainMap);
6769
domain.verifyDomainCreated();
6870
}
6971

0 commit comments

Comments
 (0)