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 f43f0e2 [hotfix] Fix JdbcIntegrationTest f43f0e2 is described below commit f43f0e2f30be4eb968f02bf34a63fab103206cfa Author: Jeff Zhang <zjf...@apache.org> AuthorDate: Sat Apr 11 11:25:17 2020 +0800 [hotfix] Fix JdbcIntegrationTest --- .../main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java b/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java index 0babe2a..9a179cd 100644 --- a/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java +++ b/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java @@ -637,8 +637,7 @@ public class InterpreterSetting { Properties jProperties = new Properties(); Map<String, InterpreterProperty> iProperties = (Map<String, InterpreterProperty>) properties; for (Map.Entry<String, InterpreterProperty> entry : iProperties.entrySet()) { - if (entry.getValue().getValue() != null && - !StringUtils.isBlank(entry.getValue().getValue().toString())) { + if (entry.getValue().getValue() != null) { jProperties.setProperty(entry.getKey().trim(), entry.getValue().getValue().toString().trim()); }