From c9d967e1f5200c4c991a6a073d262ea7daa8f0f9 Mon Sep 17 00:00:00 2001 From: Elijah Date: Wed, 18 Dec 2024 20:58:22 +0000 Subject: [PATCH] fix another mess --- reflex/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reflex/config.py b/reflex/config.py index d91714d3e..29ff07e3c 100644 --- a/reflex/config.py +++ b/reflex/config.py @@ -691,6 +691,9 @@ class Config(Base): # Token expiration time for redis state manager redis_token_expiration: int = constants.Expiration.TOKEN + # Maximum lock time before warning for redis state manager. + redis_lock_warning_threshold: int = constants.Expiration.LOCK_WARNING_THRESHOLD + # Attributes that were explicitly set by the user. _non_default_attributes: Set[str] = pydantic.PrivateAttr(set())