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 has been archived by the owner on Jan 4, 2019. It is now read-only.
Currently excepthook is in place on on_msg threads and the WS thread, but if an exception is thrown in ChatExchange internally (such as the dreaded and random ValueError: invalid literal for int() with base 10: 'users') we won't catch that since it's on a different thread.
The text was updated successfully, but these errors were encountered:
This would need a separate handler inside ChatExchange - we could fork our own, but it may be better to have a generic try/catch in ws.py that captures any subthread errors. We don't have global try/catch right now because it hides other errors we might want to catch, but if we can find what lines in standard Smokey call that in CE we might be able to suppress - the problem is that doesn't fix the issue long term and would still cause potential issues elsewhere.
Currently excepthook is in place on
on_msg
threads and the WS thread, but if an exception is thrown in ChatExchange internally (such as the dreaded and randomValueError: invalid literal for int() with base 10: 'users'
) we won't catch that since it's on a different thread.The text was updated successfully, but these errors were encountered: