You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
Nice catch.
For now I just added this to readme: 4049a60
I'll leave this bug open, will try to figure it out next time I have time to work on this library.
One other note that may be useful to include in the README is the CELERY_RESULT_BACKEND setting recommendation. Otherwise, it seems like failures don't report quite as you'd expect (took me a bit to figure out...). My tasks would just wait forever if I was polling them for a change since the result wasn't recorded.
smuuf
added a commit
to smuuf/celery-php
that referenced
this issue
Aug 28, 2020
Hi,
After much head scratching, I finally figured out why my 'get' was not returning results.
It turns out that ff the Celery worker is configured with
the task status changes to 'STARTED', but never moves to ''SUCCESS'. (at least for me!). So using .get() never returns a result
Changing to
and switching to PHP AMQP implementation (so that I can expire the results), solved all my headaches.
Thanks for a very useful script!
The text was updated successfully, but these errors were encountered: