HBASE-5673 The OOM problem of IPC client call cause all handle block; REVERT OF V2, A SECOND REVERT
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1307513 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2ecce6117e
commit
8ecfa1087c
|
@ -373,12 +373,11 @@ public class HBaseClient {
|
|||
|
||||
// start the receiver thread after the socket connection has been set up
|
||||
start();
|
||||
} catch (Throwable e) {
|
||||
IOException exception = new IOException(e);
|
||||
markClosed(exception);
|
||||
} catch (IOException e) {
|
||||
markClosed(e);
|
||||
close();
|
||||
|
||||
throw exception;
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue