-
Hi there. I'm working with a repository where we've overridden the default task class and added some methods, and we're using `task_cls` to initialize Celery with this as the default class. I'm seeing…
-
Reading the documentation I know that celery-director can run tasks in parallel
https://ovh.github.io/celery-director/guides/build-workflows/#launch-tasks-in-parallel
But I have a question related t…
-
Python client works fine:
```
>>> from tasks import add
>>> result = add.delay(4, 6)
>>> result.get(timeout=1)
10
```
But I receive the following error on celery-php client
```
PHP Fatal er…
-
It would be great if it has pre-defined some transitions:
1. InProgressTransition - has celery side-effects and callbacks as functions
2. PostTransition - has only callbacks as celery tasks
3. C…
-
This is a curious one; I'm only guessing this is the right project to report the bug; I don't see an obvious way to fix it though, and it is a bit of an edge case.
- My function uses `@transaction.com…
-
Hi, I'm using Django 1.9.2 with Celery 3.1.20 and django-celery 3.1.17. When I had to change the schedule of a task from timedelta(seconds=5) to crontab(), the interval_id from the entry of the task o…
-
![qfield](https://github.com/user-attachments/assets/c1234d82-5671-495a-8862-009b5482a1a5)
Dear QFieldCloud Support Team,
I hope this message finds you well.
I am facing some issues with my l…
-
This is from staging:
```
Thu Jun 6 14:53:29 2024
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 460.32.03 Driver Version: 460.32.03 CUDA Versi…
-
hi, if we use the file system as broker, how to get the celery task result?
-
The `@task` decorator accepts a parameter `autoretry_for` to retry the task if exceptions of given types are raised. `autoretry_for` forwards the parameters specified in `retry_kwargs` to `celery.app.…