Calling DFSClient.close() should not throw IOException.
-------------------------------------------------------

                 Key: HADOOP-2998
                 URL: https://issues.apache.org/jira/browse/HADOOP-2998
             Project: Hadoop Core
          Issue Type: Bug
            Reporter: Tsz Wo (Nicholas), SZE
            Assignee: Tsz Wo (Nicholas), SZE


In Java, if a stream is opened, it can be closed for more than one times 
without any exception.  For example,
{code}
OutputStream out = ...;
...
out.close();
out.close(); //no exception thrown here
{code}

So, DFSClient.close() should also do the same.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to