Is there a way in Web.py to detect and handle connection being closed by user while the request is processing?

I tried setting unloadhook handler, but it doesn't get called in this case. It's only called after the request was successfully completed:


class handler:
    def __init__(self):
        pass

    def GET(self):
        try:
            while(True):
                pass
        except Exception, e:
            logger.debug(e)

def unload():
    logger.debug('unloaded')

try:
    app = web.application(urls, globals())
    app.add_processor(web.unloadhook(unload))
    application = app.wsgifunc()

except Exception, e:
    logger.debug(e)

I open the app in a browser and when it starts spinning in the while loop I break the request, but no exception is thrown.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Due to the way that web servers and WSGI itself works, generally there is no reliable way of doing it. For an explanation read:

http://groups.google.com/group/modwsgi/browse_frm/thread/8ebd9aca9d317ac9

link|improve this answer
feedback

Set a timeout, and catch an exception type that specifically covers the case of a closed connection.

See this on exception handling in Python

link|improve this answer
Thanks, but it doesn't seem to be working (see my updated question above) – Leonid Oct 20 '09 at 20:02
I don't see where you set a timeout. – Chris Ballance Oct 20 '09 at 20:12
I've set Timeout in httpd.conf Not sure if you meant it to be set in webpy, but if that's the case I couldn't find how to make it. – Leonid Oct 20 '09 at 22:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.