From b056d5d7322e0a80e4ff8f3d105e4ca490ffafdc Mon Sep 17 00:00:00 2001 From: obdev Date: Tue, 5 Jul 2022 16:15:14 +0800 Subject: [PATCH] fix ttl issue 43000669 --- src/storage/memtable/ob_lock_wait_mgr.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/storage/memtable/ob_lock_wait_mgr.cpp b/src/storage/memtable/ob_lock_wait_mgr.cpp index 70aa7e2a3e..9e478f5bc7 100644 --- a/src/storage/memtable/ob_lock_wait_mgr.cpp +++ b/src/storage/memtable/ob_lock_wait_mgr.cpp @@ -296,7 +296,8 @@ ObLink* ObLockWaitMgr::check_timeout() iter->on_retry_lock(hash); TRANS_LOG(INFO, "current task should be waken up", K(*iter)); } else if (0 == iter->sessid_) { - // do nothing, may be rpc plan, sessionid is not setted + // when lock wait in dag worker, session is not exist + need_check_session = false; } else { // do nothing } -- GitLab