File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -337,10 +337,12 @@ public void testAdminServerRestartVersions() throws Exception {
337
337
.stdout (),
338
338
"v1.1" );
339
339
Path path = Paths .get (restartTmpDir , "restart.admin.yaml" );
340
+ logger .info ("Path of the modified domain.yaml :" + path .toString ());
340
341
Charset charset = StandardCharsets .UTF_8 ;
341
342
Files .write (path , yaml .getBytes (charset ));
342
343
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 ());
344
346
logger .info ("Verifying if the admin server is restarted" );
345
347
domain .verifyAdminServerRestarted ();
346
348
} finally {
You can’t perform that action at this time.
0 commit comments