-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task name and positional arguments don't appear in the results #326
Comments
v2.4.0 released and v2.4.1 is coming |
@AmitPhulera can you please verify the regression? |
We are experiencing the same issues after upgrading to 2.4.0 |
can you please check which commit created the regression? there is only two to check |
is it ad508fe ? |
After 2.4.0 upgrade (from 2.2.0), I see no tasks and no Periodic task name no positional arguments. Thank you! |
you can try 2.3.1 |
@auvipy I just tried setting |
I just read what ad508fe actually did - so my guess is that this is mostly a documentation issue? |
Just read the conversation - I was looking for places where it could be documented but did not find anything. So I ended up adding it as a minor version bump and added some info there. |
Guys, you saved my day with However, |
@felixmeziere set |
... so task results persist the name and args of the task. celery/django-celery-results#326
... so task results persist the name and args of the task. celery/django-celery-results#326
add the missing information to the database. This is a known issue in release 2.4.0 see celery/django-celery-results#326
hope put this in the document, remind all new comings. |
Also having the same problem. Is there a fix? |
This is still (?) broken in 2.5.1 even with |
Getting blank PERIODIC_TASK_NAME & more, after setting CELERY_RESULT_EXTENDED = True. |
Seems like the setting only fixes it if your broker is redis, not rabbitmq. |
I had the same issue. I tried setting CELERY_RESULT_EXTENDED = True and everything is OK now. |
... so task results persist the name and args of the task. celery/django-celery-results#326
No matter how I run a task, I can't get the task name nor the parameters display in the results:
Here is my task (I tried with
bind=True
too):To run the task, I tried:
add.delay(2, 10)
add.apply_async(args=[2, 10])
PeriodicTask
object with position arguments set to[2, 10]
Same issue every time. What did I do wrong? Thanks.
The text was updated successfully, but these errors were encountered: