diff --git a/reflex/config.py b/reflex/config.py index d91714d3ef..29ff07e3cf 100644 --- a/reflex/config.py +++ b/reflex/config.py @@ -691,6 +691,9 @@ class Config: # 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())