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
socket.py keeps exception in reraise_exc variable and try to raise it with "raise reraise_exc", however that's causing wrong traceback on stderr.
Since the blank raise raises the last exception below is the fix (I've commented raise "reraise_exc" and just use "raise"
if reraise_exc:
raise
the problem it was causing is the last line of traceback was:
File "/usr/local/lib/python2.7/dist-packages/engineio/socket.py", line 230, in _websocket_handler
raise reraise_exc
using just raise it displays correct traceback for the previous exception
The text was updated successfully, but these errors were encountered:
socket.py keeps exception in reraise_exc variable and try to raise it with "raise reraise_exc", however that's causing wrong traceback on stderr.
Since the blank raise raises the last exception below is the fix (I've commented raise "reraise_exc" and just use "raise"
if reraise_exc:
raise
the problem it was causing is the last line of traceback was:
using just raise it displays correct traceback for the previous exception
The text was updated successfully, but these errors were encountered: