Skip to content
Snippets Groups Projects
Verified Commit 466ac34b authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix __init__ of signal processor

parent 0f81e3d4
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,8 @@ from .indexes import CelerySearchIndex
class CelerySignalProcessor(BaseSignalProcessor):
def __init__(self):
def __init__(self, *args, **kwargs):
super().(*args, **kwargs)
self._queue = []
def setup(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment