mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Fix typo in redis cache change from 10afaee1
This commit is contained in:
2
lib/ansible/cache/redis.py
vendored
2
lib/ansible/cache/redis.py
vendored
@@ -98,5 +98,5 @@ class CacheModule(BaseCacheModule):
|
|||||||
# FIXME: there is probably a better way to do this in redis
|
# FIXME: there is probably a better way to do this in redis
|
||||||
ret = dict()
|
ret = dict()
|
||||||
for key in self.keys():
|
for key in self.keys():
|
||||||
ret[key] self.get(key)
|
ret[key] = self.get(key)
|
||||||
return ret
|
return ret
|
||||||
|
|||||||
Reference in New Issue
Block a user