HBASE-1087 DFS failures did not shutdown regionserver
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@729349 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9220e66c92
commit
cda80c2f7b
|
@ -69,6 +69,9 @@ class LogRoller extends Thread implements LogRollListener {
|
|||
} catch (FailedLogCloseException e) {
|
||||
LOG.fatal("Forcing server shutdown", e);
|
||||
server.abort();
|
||||
} catch (java.net.ConnectException e) {
|
||||
LOG.fatal("Forcing server shutdown", e);
|
||||
server.abort();
|
||||
} catch (IOException ex) {
|
||||
LOG.error("Log rolling failed with ioe: ",
|
||||
RemoteExceptionHandler.checkIOException(ex));
|
||||
|
|
Loading…
Reference in New Issue