Jahn Thomas Fidje
Jahn Thomas Fidje
Suggested solution to #1690.
Currently I have a custom Queue class that implements this feature by overriding the `enqueue_dependents` method, but after upgrading to 1.11 stuff breaks as a consequence of my overrides. Is...
Consider the following snippet below and two running workers: ```python r = Redis( host="localhost", port=6379, db=0 ) q = Queue(connection=r) id_1 = str(uuid4()) q.enqueue(func_1, job_id=id_1) q.enqueue(func_2, depends_on=id_1) ``` In that...
I have both a custom job class and use the JSON serializer, but if I call send_stop_job_command neither my CustomJob class or the serializer is used when fetching the state...
Does Typer support Tuples as Multiple Multi Value Options - List[Tuple[str, str]] - like Click does?
### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....
We have built a large job orchestration engine on top of RQ and we are encountering some issues with the way RQ handles failed jobs that have dependent child-jobs registered...