-
### Summary:
* Celery Version: 5.2.7
* Celery-Beat Version: 2.4.0
Currently, if you try to create PeriodicTask with the argument kwargas: dict its converts into a simple string and the task bec…
-
Similar to the issue mentioned here: https://github.com/celery/django-celery-results/issues/52#issuecomment-608443564.
We have met the same error when trying to run chord tasks using `django-db` as t…
-
I just found some info from the link:
https://doccano.github.io/doccano/developer_guide/
there is some description "Django application. In the older versions, this manages all the APIs. Now, there…
-
從 `mail_member_add` 觸發寄送的項目後,`必須` 要完成寄送才會標記完成,但會因為 RabbitMQ 累積待發送項目,而造成每次檢查是否要寄送項目而重複放入 queue 序列。
https://github.com/COSCUP/COSCUP-Volunteer/blob/37a3143d998e1e06dc7fcd746e32bfe3757602a1/celery_tas…
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Current Behavior
For an unexplained reason some subdomain does not launch any scan.
When you click Init…
-
I am using Python-Meteor to communicate from a celery task to meteor server
I the meteor is restarted for some reasons - I am getting a Broken Pipe exception from python sockets.
I am trying to use …
-
### Apache Airflow version
2.10.2
### If "Other Airflow 2 version" selected, which one?
_No response_
### What happened?
When creating a dag with, for example, `TriggerDagRunOperator` or `EmrTerm…
-
Consider the following (where A, B, C, D, E are tasks):
```
sub_A = A.s()
chord_D = chord([sub_A, B.s()], D.s())
chord_E = chord([sub_A, C.s()], E.s())
res = group(chord_D, chord_E)()
```
This creat…
-
I found when jumping my project from 3.7 to 3.8.3 I'd get an error "No Module named 'celery.task'. I found it's referring to line 83 in the main `flask_wkhtmltopdf.py` file. If I hand-edit that file…
-
I have a pyramid application.
I registered verbs in main **init**.py but it does not work when celery tasks run.
Where should I registered verbs in Pyramid application so that Celery tasks can pick it…