JETTY-959 CGI servlet doesn't kill the CGI in case the client disconnects

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@192 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
David Yu 2009-04-24 07:30:29 +00:00
parent 910a22426b
commit 756cd03edf
2 changed files with 13 additions and 3 deletions

View File

@ -1,6 +1,7 @@
jetty-7.0.0.M2-SNAPSHOT
+ JETTY-941 Linux chkconfig hint
+ JETTY-996 Make start-stop-daemon optional
+ JETTY-941 Linux chkconfig hint
+ JETTY-959 CGI servlet doesn't kill the CGI in case the client disconnects
+ JETTY-996 Make start-stop-daemon optional
jetty-7.0.0.M1 22 April 2009
+ 271258 FORM Authentication dispatch handling avoids caching

View File

@ -355,7 +355,16 @@ public class CGI extends HttpServlet
finally
{
if( os != null )
os.close();
{
try
{
os.close();
}
catch(Exception e)
{
Log.ignore(e);
}
}
os = null;
p.destroy();
// Log.debug("CGI: terminated!");