We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b7713f commit dc38169Copy full SHA for dc38169
redisvl/index/index.py
@@ -858,14 +858,14 @@ def __init__(
858
self.schema = schema
859
860
self._lib_name: Optional[str] = kwargs.pop("lib_name", None)
861
- self._validated_client = False
862
863
# Store connection parameters
864
self._redis_client = redis_client
865
self._redis_url = redis_url
866
self._connection_kwargs = connection_kwargs or {}
867
self._lock = asyncio.Lock()
868
+ self._validated_client = False
869
self._owns_redis_client = redis_client is None
870
if self._owns_redis_client:
871
weakref.finalize(self, sync_wrapper(self.disconnect))
0 commit comments