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.
>>> 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 error: Uncaught Celery\CeleryTimeoutException: AMQP task tasks.add([2,2]) did not return after 10 seconds in /vendor/massivescale/celery-php/src/AsyncResult.php:181
Python client works fine:
But I receive the following error on celery-php client
Could you please help me to solve this issue?