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 077846b commit 831118eCopy full SHA for 831118e
django_unicorn/views.py
@@ -579,7 +579,9 @@ def _handle_component_request(
579
cache = caches[get_cache_alias()]
580
581
# Add the current request `ComponentRequest` to the cache
582
- component_cache_key = f"{component_request.name}:{component_request.id}"
+ component_cache_key = (
583
+ f"unicorn:queue:{component_request.name}:{component_request.id}"
584
+ )
585
component_requests = cache.get(component_cache_key) or []
586
component_requests.append(component_request)
587
0 commit comments