Skip to content

Commit

Permalink
fix: Fix key to include prefix
Browse files Browse the repository at this point in the history
Signed-off-by: Colton Wolkins (Indicio work address) <colton@indicio.tech>
  • Loading branch information
TheTechmage committed May 11, 2022
1 parent fcd4218 commit a331dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acapy_cache_redis/v0_1/redis_base_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ async def clear(self, key: Text):
key: the key to remove
"""
keysDeleted = await self.redis.delete(key)
keysDeleted = await self.redis.delete(f"ACA-Py:{key}")
assert keysDeleted == 1

async def flush(self):
Expand Down

0 comments on commit a331dde

Please sign in to comment.