public
Rubygem
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Click here to lend your support to: thin and make a donation at www.pledgie.com !
Document what request termination means in Thin.
Sat Aug 02 06:13:15 -0700 2008
macournoyer (committer)
Sat Aug 02 07:43:14 -0700 2008
commit  cb6e21d6519c8da088f94864dec56c9122f2b753
tree    7b013e8ace514e4db8d80267a0a2c17d758317a7
parent  37153518eb0ceba6f6f404ca630b8411449f3c17
...
100
101
102
103
 
 
 
 
104
105
106
...
100
101
102
 
103
104
105
106
107
108
109
0
@@ -100,7 +100,10 @@ module Thin
0
       log_error
0
       close_connection rescue nil
0
     end
0
-    
0
+
0
+    # Does request and response cleanup (like closing open IO streams).
0
+    # Re-initializes response and request if client supports persistent
0
+    # connection.
0
     def terminate_request
0
       @request.close  rescue nil
0
       @response.close rescue nil

Comments