You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ja...@apache.org on 2020/11/11 09:54:31 UTC

[iotdb] branch TY400Bug updated: add more log

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

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


The following commit(s) were added to refs/heads/TY400Bug by this push:
     new ef13ff3  add more log
ef13ff3 is described below

commit ef13ff3ac79899bdcb2b089ae67ab47ac349c70e
Author: JackieTien97 <Ja...@foxmail.com>
AuthorDate: Wed Nov 11 17:51:20 2020 +0800

    add more log
---
 server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java b/server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java
index 7189711..32802f3 100644
--- a/server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java
+++ b/server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java
@@ -1197,6 +1197,7 @@ public class TSServiceImpl implements TSIService.Iface, ServerContext {
   protected void handleClientExit() {
     Long sessionId = currSessionId.get();
     if (sessionId != null) {
+      logger.info("client exit and release session resource: " + sessionId);
       TSCloseSessionReq req = new TSCloseSessionReq(sessionId);
       closeSession(req);
     }