12 lines
326 B
Python
12 lines
326 B
Python
"""Удаление сессии."""
|
|
|
|
from .state import _lock, _sessions
|
|
|
|
|
|
def cleanup(sid: str):
|
|
"""Удалить сессию и остановить её TTL-таймер."""
|
|
|
|
with _lock:
|
|
session = _sessions.pop(sid, None)
|
|
if session and session.get("timer"):
|
|
session["timer"].cancel() |