fix(session): clear file state at deletion boundary

This commit is contained in:
Xubin Ren
2026-08-15 23:49:20 +08:00
parent 42afebb0cb
commit 2f19068eb0
4 changed files with 26 additions and 4 deletions
-1
View File
@@ -146,7 +146,6 @@ class SessionClient:
def delete(self, session_key: str) -> bool:
"""Delete one session from disk and cache."""
self._loop.discard_session_file_state(session_key)
return self._loop.sessions.delete_session(session_key)
def flush(self) -> int: