We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 551cf6b commit ba087dfCopy full SHA for ba087df
src/fq/queue.py
@@ -39,6 +39,10 @@ def __init__(self, config_path):
39
self._load_config()
40
self._r = None # redis client placeholder
41
42
+ async def initialize(self):
43
+ """Async initializer to set up redis and lua scripts."""
44
+ await self._initialize()
45
+
46
async def _initialize(self):
47
"""Read the FQ configuration and set up redis + Lua scripts."""
48
0 commit comments