From 552264aaeeb22cc4fade31f36b1be350f5e431d5 Mon Sep 17 00:00:00 2001 From: abdulhade Date: Thu, 25 Dec 2025 22:01:08 +0300 Subject: [PATCH] Fixed TTL --- app/operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/operations.py b/app/operations.py index 77548a7..1c33f66 100644 --- a/app/operations.py +++ b/app/operations.py @@ -79,7 +79,7 @@ async def fetch_cursor( if cached_cursor.done: mysql.cached_cursors.pop(cursor_id, None) else: - cached_cursor.upgrade_close_at() + cached_cursor.close_at = cached_cursor.upgrade_close_at() return SelectResult( cursor=cached_cursor,