- Ignore client aborts when flushing the buffer.
authorremm <remm@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 15 Dec 2006 22:30:51 +0000 (22:30 +0000)
committerremm <remm@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 15 Dec 2006 22:30:51 +0000 (22:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@487694 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/core/StandardHostValve.java

index 861374f..186ce3b 100644 (file)
@@ -343,6 +343,8 @@ final class StandardHostValve
             if (custom(request, response, errorPage)) {
                 try {
                     response.flushBuffer();
+                } catch (ClientAbortException e) {
+                    // Ignore
                 } catch (IOException e) {
                     container.getLogger().warn("Exception Processing " + errorPage, e);
                 }