I have a python cgi script that accepts user uploads (via sys.stdin.read). After receiving the file (whether successfully or unsuccessfully), the script needs to do some cleanup. This works fine when upload finishes correctly, however if the user closes the client, the cgi script is silently killed on the server, and as a result no cleanup code gets executed. How can i force the script to always finish.
|
|
You may be able to use the atexit module. http://docs.python.org/library/atexit.html From the documentation:
|
||
|
|
|
|
The script is probably not killed silently; you just don't see the exception which python throws. I suggest to wrap the whole script in This way, you can see what really happens. The |
||
|
|
|
You can trap the exit signal with the signal module. Haven't tried this with mod_python though. http://docs.python.org/library/signal.html Note in the docs:
You may need to catch I/O exceptions for the broken pipe and/or file write if you don't sys.exit from your handler. |
|||
|
