HBASE-14313 After a Connection sees ConnectionClosingException on a connection it never recovers

This commit is contained in:
Elliott Clark 2015-08-25 18:39:31 -07:00
parent b8c7a08a9e
commit 886542bd1b
1 changed files with 1 additions and 1 deletions

View File

@ -939,7 +939,7 @@ public class RpcClientImpl extends AbstractRpcClient {
} catch (IOException e) {
// We set the value inside the synchronized block, this way the next in line
// won't even try to write
shouldCloseConnection.set(true);
markClosed(e);
writeException = e;
interrupt();
}