Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

Changeset 1410

Show
Ignore:
Timestamp:
10/25/06 18:29:55
Author:
fumanchu
Message:

Fix for #589 (SSL 'excessive message size' errors).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cherrypy/_cpwsgiserver.py

    r1406 r1410  
    368368                time.sleep(self.ssl_retry) 
    369369            except SSL.SysCallError, e: 
     370                if e.args == (-1, 'Unexpected EOF'): 
     371                    return "" 
     372                 
    370373                errno = e.args[0] 
    371374                if errno not in socket_errors_to_ignore: 
    372375                    raise socket.error(errno) 
     376                 
    373377                return "" 
    374378            except SSL.Error, e: 

Hosted by WebFaction

Log in as guest/cpguest to create tickets