Skip to content
Snippets Groups Projects
Commit d3ae49ea authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

catch all ssl exception. Fixes #5706

parent fe48933d
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment