Ted Yu created HIVE-7672:
----------------------------
Summary: Potential resource leak in EximUtil#createExportDump()
Key: HIVE-7672
URL: https://issues.apache.org/jira/browse/HIVE-7672
Project: Hive
Issue Type: Bug
Reporter: Ted Yu
Priority: Minor
Here is related code:
{code}
OutputStream out = fs.create(metadataPath);
out.write(jsonContainer.toString().getBytes("UTF-8"));
out.close();
{code}
If out.write() throws exception, out would be left unclosed.
out.close() should be enclosed in finally block.
--
This message was sent by Atlassian JIRA
(v6.2#6252)