Skip to content

Commit

Permalink
Fix adapter cache key.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Feb 19, 2024
1 parent 5531bca commit 5621066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion order/adapters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def retrieve_data(self) -> Materialized:
return

def get_cache_key(self, **kwargs) -> tuple:
return tuple(
return (self.name,) + tuple(
(
key,
self.get_cache_key(**kwargs[key]) if isinstance(kwargs[key], dict) else kwargs[key],
Expand Down

0 comments on commit 5621066

Please sign in to comment.