You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2022/03/11 18:40:07 UTC

[GitHub] [hudi] yihua commented on a change in pull request #5004: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

yihua commented on a change in pull request #5004:
URL: https://github.com/apache/hudi/pull/5004#discussion_r824977147



##########
File path: hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestBase.java
##########
@@ -228,8 +238,11 @@ private TestExecStartResultCallback executeCommandInDocker(String containerName,
     int exitCode = dockerClient.inspectExecCmd(createCmdResponse.getId()).exec().getExitCode();
     LOG.info("Exit code for command : " + exitCode);
     if (exitCode != 0) {
-      LOG.error("\n\n ###### Stdout #######\n" + callback.getStdout().toString());
+      //LOG.error("\n\n ###### Stdout #######\n" + callback.getStdout().toString());
     }
+    callback.getStderr().flush();
+    callback.getStdout().flush();
+    LOG.error("\n\n ###### Stdout #######\n" + callback.getStdout().toString());

Review comment:
       These debugging code will be removed once the PR is near landing.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org