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 459e953 commit c5e8760Copy full SHA for c5e8760
cache_helper/decorators.py
@@ -113,7 +113,7 @@ def invalidate(*args, **kwargs):
113
:param kwargs: The kwargs passed into the original function.
114
:rtype: None
115
"""
116
- function_cache_key = utils.get_function_cache_key(func_name, args[1:], kwargs)
+ function_cache_key = utils.get_function_cache_key(func_name, args, kwargs)
117
cache_key = utils.get_hashed_cache_key(function_cache_key)
118
cache.delete(cache_key)
119
0 commit comments