vincentpoon commented on a change in pull request #460: PHOENIX-5184: HBase and
Phoenix connection leaks in Indexing code path, OrphanViewTool and
PhoenixConfigurationUtil
URL: https://github.com/apache/phoenix/pull/460#discussion_r263981399
##########
File path:
phoenix-core/src/main/java/org/apache/phoenix/mapreduce/index/IndexTool.java
##########
@@ -682,9 +694,15 @@ public int run(String[] args) throws Exception {
if (htable != null) {
htable.close();
}
- if(regionLocator != null) {
+ if (hConn != null) {
+ hConn.close();
Review comment:
same here, if any of these closes throw, the ones afterwards won't get closed
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services