3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 09:19:23 +01:00

Irc: actually abort when handle_events errors

This commit is contained in:
James Lu 2015-10-09 21:35:42 -07:00
parent 181c40d9fe
commit f80b383d06

View File

@ -248,6 +248,7 @@ class Irc():
except Exception: except Exception:
log.exception('(%s) Caught error in handle_events, disconnecting!', self.name) log.exception('(%s) Caught error in handle_events, disconnecting!', self.name)
log.error('(%s) The offending line was: <- %s', self.name, line) log.error('(%s) The offending line was: <- %s', self.name, line)
self.aborted.set()
return return
# Only call our hooks if there's data to process. Handlers that support # Only call our hooks if there's data to process. Handlers that support
# hooks will return a dict of parsed arguments, which can be passed on # hooks will return a dict of parsed arguments, which can be passed on