This is an automated email from the ASF dual-hosted git repository.

jongyoul 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 e3a3468bfb [HOTFIX] avoid password leaks (#4634)
e3a3468bfb is described below

commit e3a3468bfbacfb292a429480a8ffb8554b06b853
Author: Manhua <kevin...@qq.com>
AuthorDate: Tue Jul 25 19:01:44 2023 +0800

    [HOTFIX] avoid password leaks (#4634)
---
 jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java 
b/jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java
index 702beb0795..30f2cb1929 100644
--- a/jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java
+++ b/jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java
@@ -469,8 +469,7 @@ public class JDBCInterpreter extends KerberosInterpreter {
   private void createConnectionPool(String url, String user,
       Properties properties) throws SQLException, ClassNotFoundException {
 
-    LOGGER.info("Creating connection pool for url: {}, user: {}, properties: 
{}",
-            url, user, properties);
+    LOGGER.info("Creating connection pool for url: {}, user: {}", url, user);
 
     /* Remove properties that is not valid properties for presto/trino by 
checking driver key.
      * - Presto: com.facebook.presto.jdbc.PrestoDriver

Reply via email to