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 the receiver thread after the socket connection has been set up
|
||||||
start();
|
start();
|
||||||
} catch (Throwable e) {
|
} catch (IOException e) {
|
||||||
IOException exception = new IOException(e);
|
markClosed(e);
|
||||||
markClosed(exception);
|
|
||||||
close();
|
close();
|
||||||
|
|
||||||
throw exception;
|
throw e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue