Details
Description
ALL VERSIONS.
PushbackInputStream delegate is not closed, so we get "too many open files" on Linux -platform.
Our Total File Descriptors For System is 8000.
PushbackInputStream delegate is used when reading stylesheet files (.css -files "text/css" -content type).
Used in JSF2 <h:outputStylesheet/> -tag.
ADD Stream closing...
private class ValueExpressionFilterInputStream extends InputStream
{
...
/**
- PushbackInputStream delegate MUST BE CLOSED or you will get "too many open files" on Linux-platform
*/
@Override
public void close( ) throws IOException { delegate.close(); //System.out.println( "EYECATCHER. " + getClass( ).getSimpleName( ) + ".close called" ); }
Attachments
Issue Links
- is cloned by
-
MFCOMMONS-46 CLONE - org.apache.myfaces.shared.resource. ResourceImpl: PushbackInputStream delegate is not closed
- Closed