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 eba1832 commit 13a89ccCopy full SHA for 13a89cc
backend/routers/lib/cache.py
@@ -127,7 +127,7 @@ def wrapper(func):
127
@wraps(func)
128
async def wrapped(*args, **kwargs):
129
key_parts = list(args) + list(kwargs.keys()) + list(kwargs.values())
130
- key = f'{[func.__name__]}:{"-".join(str(k) for k in key_parts)}'
+ key = f'{func.__name__}:{"-".join(str(k) for k in key_parts)}'
131
result = store.get(key)
132
133
if result is None or not production_environment:
0 commit comments