File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -728,7 +728,7 @@ class EnvironmentVariables:
728728 REFLEX_AUTO_RELOAD_COOLDOWN_TIME_MS : EnvVar [int ] = env_var (10_000 )
729729
730730 # Whether to enable debug logging for the redis state manager.
731- REFLEX_REDIS_STATE_MANAGER_DEBUG : EnvVar [bool ] = env_var (False )
731+ REFLEX_STATE_MANAGER_REDIS_DEBUG : EnvVar [bool ] = env_var (False )
732732
733733 # Whether to opportunistically hold the redis lock to allow fast in-memory access while uncontended.
734734 REFLEX_OPLOCK_ENABLED : EnvVar [bool ] = env_var (False )
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ class StateManagerRedis(StateManager):
141141
142142 # Whether debug prints are enabled.
143143 _debug_enabled : bool = dataclasses .field (
144- default = environment .REFLEX_REDIS_STATE_MANAGER_DEBUG .get (),
144+ default = environment .REFLEX_STATE_MANAGER_REDIS_DEBUG .get (),
145145 init = False ,
146146 )
147147
You can’t perform that action at this time.
0 commit comments