You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an issue where the redis_cluster.py module doesn't define self.dependency. This leads to an AttributeError when the parent property self.base_exceptions attempts to call self.dependency.
Expected Behaviour
The code should execute without errors, assuming self.dependency is properly defined.
Current Behaviour
The following error occurs:
AttributeError: 'RedisClusterStorage' object has no attribute 'dependency'
Steps to Reproduce
Use the redis_cluster.py module with a Redis cluster.
Call functions that invoke the self.base_exceptions property, such as through the following chain of functions:
The error will occur when the try block in base.py raises an exception.
I encountered an issue where the
redis_cluster.py
module doesn't defineself.dependency
. This leads to anAttributeError
when the parent propertyself.base_exceptions
attempts to callself.dependency
.Expected Behaviour
The code should execute without errors, assuming self.dependency is properly defined.
Current Behaviour
The following error occurs:
Steps to Reproduce
Use the
redis_cluster.py
module with a Redis cluster.Call functions that invoke the
self.base_exceptions
property, such as through the following chain of functions:The error will occur when the try block in
base.py
raises an exception.Your Environment
The text was updated successfully, but these errors were encountered: