Add OSError to catched Gevent Error

This commit is contained in:
Ozzieisaacs 2020-10-20 17:38:37 +02:00
parent f9995583a5
commit 5792838333
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ class WebServer(object):
def my_wrap_socket(*args, **kwargs):
try:
return wrap_socket(*args, **kwargs)
except (ssl.SSLError) as ex:
except (ssl.SSLError, OSError) as ex:
log.warning('Gevent SSL Error: %s', ex)
raise GreenletExit