Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
WebSphere v7.0.19 on Linux (Red Hat)
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 a clone of
-
MYFACES-3430 org.apache.myfaces.shared.resource. ResourceImpl: PushbackInputStream delegate is not closed
- Closed