浏览代码

reduce lock expiration time to 1s (#4507)

Elijah Ahianyo 5 月之前
父节点
当前提交
6e3e632bbd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      reflex/constants/config.py

+ 1 - 1
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 = 10000
+    LOCK = 1000
     # The PING timeout
     PING = 120