catch all ssl exception. Fixes #5706

This commit is contained in:
Yann Leboulanger 2010-04-24 13:49:12 +02:00
parent fe48933d5f
commit d3ae49ea60

View file

@ -543,7 +543,7 @@ class NonBlockingTCP(NonBlockingTransport, IdleObject):
readable=True)
self.raise_event(DATA_SENT, sent_data)
except socket.error, e:
except Exception:
log.error('_do_send:', exc_info=True)
traceback.print_exc()
self.disconnect()