Skip to content

Commit 1bbe629

Browse files
committed
Addind debug
1 parent 9be6e72 commit 1bbe629

File tree

1 file changed

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

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,9 @@ public void createDomainOnExistingDirectory() throws Exception {
639639
String domainStoragePath = domainMap.get("weblogicDomainStoragePath").toString();
640640
String domainDir = domainStoragePath + "/domains/" + domainMap.get("domainUID").toString();
641641
logger.info("making sure the domain directory exists");
642+
ExecResult result =
643+
TestUtils.exec("ls -ltr " + domainDir + " && ls -ltr " + domainStoragePath + "/domains/");
644+
logger.info("ls -ltr " + result.stdout());
642645
if (domainDir != null && !(new File(domainDir).exists())) {
643646
throw new RuntimeException(
644647
"FAIL: the domain directory " + domainDir + " does not exist, exiting!");

0 commit comments

Comments
 (0)