HBASE-19979 ReplicationSyncUp tool may leak Zookeeper connection (Pankaj Kumar)
This commit is contained in:
parent
f77b42b2af
commit
335b8a8e14
|
@ -110,14 +110,14 @@ public class ReplicationSyncUp extends Configured implements Tool {
|
|||
Thread.sleep(SLEEP_TIME);
|
||||
numberOfOldSource = manager.getOldSources().size();
|
||||
}
|
||||
manager.join();
|
||||
} catch (InterruptedException e) {
|
||||
System.err.println("didn't wait long enough:" + e);
|
||||
return (-1);
|
||||
} finally {
|
||||
zkw.close();
|
||||
}
|
||||
|
||||
manager.join();
|
||||
zkw.close();
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue