Strange behaviour: TimeoutError when invoking socketio.call() from Celery Worker #2079
Answered
by
miguelgrinberg
lucarillosi
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
miguelgrinberg
Jul 15, 2024
Replies: 1 comment 1 reply
-
The external process can only send, it cannot receive anything. Replies will never reach, so you will always get a timeout. If you need more flexibility you should consider using a Socket.IO client in your celery worker. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
lucarillosi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The external process can only send, it cannot receive anything. Replies will never reach, so you will always get a timeout. If you need more flexibility you should consider using a Socket.IO client in your celery worker.