Skip to content

Commit ae1aa9e

Browse files
committed
fix
1 parent cbed882 commit ae1aa9e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,12 @@ public void testAdminServerRestartVersions() throws Exception {
337337
.stdout(),
338338
"v1.1");
339339
Path path = Paths.get(restartTmpDir, "restart.admin.yaml");
340+
logger.info("Path of the modified domain.yaml :" + path.toString());
340341
Charset charset = StandardCharsets.UTF_8;
341342
Files.write(path, yaml.getBytes(charset));
342343
logger.info("Running kubectl apply -f " + path.toString());
343-
logger.info(TestUtils.exec("kubectl apply -f " + path.toString()).stdout());
344+
ExecResult exec = TestUtils.exec("kubectl apply -f " + path.toString());
345+
logger.info(exec.stdout());
344346
logger.info("Verifying if the admin server is restarted");
345347
domain.verifyAdminServerRestarted();
346348
} finally {

0 commit comments

Comments
 (0)