summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRajaram Soundararajan <rajaram.sr@gmail.com>2015-09-26 19:02:43 -0700
committerRajaram Soundararajan <rajaram.sr@gmail.com>2015-09-26 19:02:43 -0700
commitb253f9fbbf0d5827eb59758558b404b788a09155 (patch)
tree253b767c38c461d7f3b88733fbfcaa32c800aead
parent164ebca3cea04ef68e6f5c55573ca86c4f257ffa (diff)
downloadcherrypy-b253f9fbbf0d5827eb59758558b404b788a09155.tar.gz
Fix for constant SSL socket connection error:
if is_reader and errnum in wsgiserver.socket_errors_to_ignore: AttributeError: 'module' object has no attribute 'socket_errors_to_ignore'
-rw-r--r--cherrypy/wsgiserver/wsgiserver2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/wsgiserver/wsgiserver2.py b/cherrypy/wsgiserver/wsgiserver2.py
index 7a33a478..19fcad84 100644
--- a/cherrypy/wsgiserver/wsgiserver2.py
+++ b/cherrypy/wsgiserver/wsgiserver2.py
@@ -75,7 +75,7 @@ __all__ = ['HTTPRequest', 'HTTPConnection', 'HTTPServer',
'WorkerThread', 'ThreadPool', 'SSLAdapter',
'CherryPyWSGIServer',
'Gateway', 'WSGIGateway', 'WSGIGateway_10', 'WSGIGateway_u0',
- 'WSGIPathInfoDispatcher', 'get_ssl_adapter_class']
+ 'WSGIPathInfoDispatcher', 'get_ssl_adapter_class', 'socket_errors_to_ignore']
import os
try: