Ted Yu created HDFS-5352:
----------------------------

             Summary: Server#initLog() doesn't close InputStream
                 Key: HDFS-5352
                 URL: https://issues.apache.org/jira/browse/HDFS-5352
             Project: Hadoop HDFS
          Issue Type: Bug
            Reporter: Ted Yu
            Assignee: Ted Yu
            Priority: Minor
         Attachments: hdfs-5352.patch

Here is related code snippet in 
hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/java/org/apache/hadoop/lib/server/Server.java:
{code}
      Properties props = new Properties();
      try {
        InputStream is = getResource(DEFAULT_LOG4J_PROPERTIES);
        props.load(is);
      } catch (IOException ex) {
        throw new ServerException(ServerException.ERROR.S03, 
DEFAULT_LOG4J_PROPERTIES, ex.getMessage(), ex);
      }
{code}
is should be closed after loading.



--
This message was sent by Atlassian JIRA
(v6.1#6144)

Reply via email to