Revert "reduce lock expiration time to 1s (#4507)" (#4514)

This reverts commit 6e3e632bbd.
This commit is contained in:
Masen Furer 2024-12-10 11:12:26 -08:00 committed by GitHub
parent fd0fd2c6d4
commit 37af2ee1ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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