HBASE-5673 The OOM problem of IPC client call cause all handle block; REAPPLY; V2 OF PATCH
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1307277 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
81482cebb8
commit
277e246110
|
@ -373,11 +373,12 @@ 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 (IOException e) {
|
} catch (Throwable e) {
|
||||||
markClosed(e);
|
IOException exception = new IOException(e);
|
||||||
|
markClosed(exception);
|
||||||
close();
|
close();
|
||||||
|
|
||||||
throw e;
|
throw exception;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue