catch all ssl exception. Fixes #5706
This commit is contained in:
parent
fe48933d5f
commit
d3ae49ea60
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue