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 was archived by the owner on Nov 30, 2021. It is now read-only.
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!