HBASE-19979 ReplicationSyncUp tool may leak Zookeeper connection
This commit is contained in:
parent
41f1e5c79b
commit
4594f7156d
|
@ -114,13 +114,13 @@ 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);
|
||||
}
|
||||
|
||||
manager.join();
|
||||
} finally {
|
||||
zkw.close();
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue