From 5a83a63b662ade7606c61c0bc44a45cd931c4bc3 Mon Sep 17 00:00:00 2001 From: Masen Furer Date: Tue, 10 Dec 2024 11:09:25 -0800 Subject: [PATCH] Revert "reduce lock expiration time to 1s (#4507)" This reverts commit 6e3e632bbd64edaee5db85f3edb2be3de4a9e371. --- reflex/constants/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/constants/config.py b/reflex/constants/config.py index 234ecbd84..970e67844 100644 --- a/reflex/constants/config.py +++ b/reflex/constants/config.py @@ -26,7 +26,7 @@ class Expiration(SimpleNamespace): # Token expiration time in seconds TOKEN = 60 * 60 # Maximum time in milliseconds that a state can be locked for exclusive access. - LOCK = 1000 + LOCK = 10000 # The PING timeout PING = 120