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:
Michael Stack 2012-03-30 16:33:26 +00:00
parent 2ecce6117e
commit 8ecfa1087c
1 changed files with 3 additions and 4 deletions

View File

@ -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;
}
}