File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator/utils Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -384,8 +384,8 @@ public void deployWebAppViaREST(
384
384
.append (":" )
385
385
.append (getNodePort ())
386
386
.append ("/management/weblogic/latest/edit/appDeployments" )
387
- .append (" --write-out %{http_code} -o /dev/null " );
388
- logger .fine ("Command to deploy webapp " + cmd );
387
+ .append (" --write-out %{http_code} " );
388
+ logger .info ("Command to deploy webapp " + cmd );
389
389
ExecResult result = TestUtils .exec (cmd .toString ());
390
390
String output = result .stdout ().trim ();
391
391
logger .info ("curl output " + output + " \n err " + result .stderr ());
Original file line number Diff line number Diff line change @@ -238,6 +238,8 @@ public static ExecResult exec(String cmd) throws Exception {
238
238
logger .info (
239
239
"Command "
240
240
+ cmd
241
+ + " return value "
242
+ + result .exitValue ()
241
243
+ " failed with stderr = "
242
244
+ result .stderr ()
243
245
+ " \n stdout = "
You can’t perform that action at this time.
0 commit comments