This is an automated email from the ASF dual-hosted git repository. zjffdu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new bc09386 [hotfix] Don't print progress when displayLog is false bc09386 is described below commit bc09386c86588d81f21afb8daa1e22c1b5d30d63 Author: Jeff Zhang <zjf...@apache.org> AuthorDate: Wed Jul 1 14:09:15 2020 +0800 [hotfix] Don't print progress when displayLog is false --- jdbc/src/main/java/org/apache/zeppelin/jdbc/hive/HiveUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdbc/src/main/java/org/apache/zeppelin/jdbc/hive/HiveUtils.java b/jdbc/src/main/java/org/apache/zeppelin/jdbc/hive/HiveUtils.java index 43844b7..5dc66ec 100644 --- a/jdbc/src/main/java/org/apache/zeppelin/jdbc/hive/HiveUtils.java +++ b/jdbc/src/main/java/org/apache/zeppelin/jdbc/hive/HiveUtils.java @@ -78,7 +78,7 @@ public class HiveUtils { context.out.write(logsOutput + "\n"); context.out.flush(); } - if (!StringUtils.isBlank(logsOutput) && progressBar != null) { + if (!StringUtils.isBlank(logsOutput) && progressBar != null && displayLogProperty) { progressBar.operationLogShowedToUser(); } Optional<String> jobURL = extractJobURL(logsOutput);