Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change 
notification.

The "FAQ/KnownIssues" page has been changed by ChristopherSchultz:
http://wiki.apache.org/tomcat/FAQ/KnownIssues?action=diff&rev1=3&rev2=4

Comment:
Added pass-through flush call when OutputStream is still active.

  
      @Override
      public void flush() throws IOException {
+       if(isActive) {
+         out.flush();
+       }
-         // do nothing (pevent polluting the stream)
+       // otherwise do nothing (pevent polluting the stream)
      }
  
      @Override

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to