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
My code tries to connect with socketio.AsyncClient, and if that fails, sleeps a few seconds before trying again. With python-engineio 3.13.2, if the user presses ctrl-c during the sleep, the program does not stop but just prints ^C.
Like #196, this seems to be related to the call to add_signal_handler.
My code tries to connect with
socketio.AsyncClient
, and if that fails, sleeps a few seconds before trying again. With python-engineio 3.13.2, if the user presses ctrl-c during the sleep, the program does not stop but just prints ^C.Like #196, this seems to be related to the call to
add_signal_handler
.This is my
script.py
:To reproduce with Python 3.7.3 on Debian buster:
If I replace
python-engineio==3.13.2
with the previous version 3.13.1, then ctrl-c stops the program with aKeyboardInterrupt
, as expected.The text was updated successfully, but these errors were encountered: