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

classes: really ignore errors when shutting down sockets

This commit is contained in:
James Lu 2016-03-25 17:03:25 -07:00
parent ce3d3cf697
commit b2b04c8e75

View File

@ -305,11 +305,12 @@ class Irc():
log.removeHandler(self.loghandlers.pop())
try:
log.debug('(%s) _disconnect: Shutting down and closing socket.', self.name)
log.debug('(%s) _disconnect: Shutting down socket.', self.name)
self.socket.shutdown(socket.SHUT_RDWR)
self.socket.close()
except: # Socket timed out during creation; ignore
log.exception('(%s) _disconnect: Failed to close/shutdown socket.', self.name)
pass
self.socket.close()
if self.pingTimer:
log.debug('(%s) Canceling pingTimer at %s due to disconnect() call', self.name, time.time())