From 37af2ee1ec1536c593a21be2d965d961e689fe13 Mon Sep 17 00:00:00 2001 From: Masen Furer Date: Tue, 10 Dec 2024 11:12:26 -0800 Subject: [PATCH] Revert "reduce lock expiration time to 1s (#4507)" (#4514) 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