File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator/utils Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -639,6 +639,9 @@ public void createDomainOnExistingDirectory() throws Exception {
639
639
String domainStoragePath = domainMap .get ("weblogicDomainStoragePath" ).toString ();
640
640
String domainDir = domainStoragePath + "/domains/" + domainMap .get ("domainUID" ).toString ();
641
641
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 ());
642
645
if (domainDir != null && !(new File (domainDir ).exists ())) {
643
646
throw new RuntimeException (
644
647
"FAIL: the domain directory " + domainDir + " does not exist, exiting!" );
You can’t perform that action at this time.
0 commit comments