You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2013/10/12 02:02:41 UTC

[jira] [Created] (HDFS-5352) Server#initLog() doesn't close InputStream

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)