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

haonan pushed a commit to branch remove_session_pool_sensitive_inf
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 4668f1ed41c03d59d5fc5b9b21d654ac310ad043
Author: HTHou <[email protected]>
AuthorDate: Thu May 15 10:23:07 2025 +0800

    Remove session poll sensitive info
---
 .../src/main/java/org/apache/iotdb/session/pool/SessionPool.java     | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git 
a/iotdb-client/session/src/main/java/org/apache/iotdb/session/pool/SessionPool.java
 
b/iotdb-client/session/src/main/java/org/apache/iotdb/session/pool/SessionPool.java
index e7515d60e47..3eefa646546 100644
--- 
a/iotdb-client/session/src/main/java/org/apache/iotdb/session/pool/SessionPool.java
+++ 
b/iotdb-client/session/src/main/java/org/apache/iotdb/session/pool/SessionPool.java
@@ -672,11 +672,10 @@ public class SessionPool implements ISessionPool {
           long timeOut = Math.min(waitToGetSessionTimeoutInMs, 60_000);
           if (System.currentTimeMillis() - start > timeOut) {
             LOGGER.warn(
-                "the SessionPool has wait for {} seconds to get a new 
connection: {} with {}, {}",
+                "the SessionPool has wait for {} seconds to get a new 
connection: {} with {}",
                 (System.currentTimeMillis() - start) / 1000,
                 formattedNodeUrls,
-                user,
-                password);
+                user);
             LOGGER.warn(
                 "current occupied size {}, queue size {}, considered size {} ",
                 occupied.size(),

Reply via email to