From 90997f5adb1dfda16f1ffabdc32f764d65af640b Mon Sep 17 00:00:00 2001 From: mihalin Date: Mon, 14 Mar 2022 02:53:01 +0300 Subject: [PATCH] increase redis timeout --- olgram/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/olgram/settings.py b/olgram/settings.py index dab38e3..906370e 100644 --- a/olgram/settings.py +++ b/olgram/settings.py @@ -89,7 +89,7 @@ class ServerSettings(AbstractSettings): @classmethod @lru_cache def redis_timeout_ms(cls) -> ty.Optional[int]: - return int(timedelta(days=14).total_seconds() * 1000.0) + return int(timedelta(days=30).total_seconds() * 1000.0) @classmethod @lru_cache