zjffdu commented on a change in pull request #3917: URL: https://github.com/apache/zeppelin/pull/3917#discussion_r495813140
########## File path: zeppelin-interpreter/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java ########## @@ -184,12 +185,18 @@ public static synchronized ZeppelinConfiguration create() { return conf; } + public Map<String, String> getProperties() { + return this.properties; + } + public static void reset() { conf = null; } public void setProperty(String name, String value) { - this.properties.put(name, value); + if (name != null && value != null) { Review comment: Fixed ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org