Skip to content

Commit

Permalink
Auth Cache fix (#920)
Browse files Browse the repository at this point in the history
Cache fix
  • Loading branch information
EugeneLightsOn authored Jan 24, 2025
1 parent ec0c043 commit beeb878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/services/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def cache_put(key: str, value: Any) -> None:
client = get_client()

if isinstance(value, dict):
client.hset(key, value)
client.hset(key, mapping=value)
else:
client.set(key, value)

Expand Down

0 comments on commit beeb878

Please sign in to comment.