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:
parent
910a22426b
commit
756cd03edf
|
@ -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
|
||||
|
|
|
@ -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!");
|
||||
|
|
Loading…
Reference in New Issue