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 54f6409 commit ac9ad80Copy full SHA for ac9ad80
packages/service-library/src/servicelib/long_running_tasks/long_running_client_helper.py
@@ -32,7 +32,7 @@ def _redis(self) -> aioredis.Redis:
32
return self._client.redis
33
34
async def cleanup(self, lrt_namespace: LRTNamespace) -> None:
35
- """Cleanups all Redis keys for the given LRTNamespace"""
+ """removes Redis keys assosiated to the LRTNamespace if they exist"""
36
keys_to_remove: list[str] = [
37
x async for x in self._redis.scan_iter(f"{lrt_namespace}*")
38
]
0 commit comments