Timothy Bish 2014-01-22 17:48:11 -05:00
parent dd0c9c4144
commit d8cd37030b
1 changed files with 11 additions and 1 deletions

View File

@ -374,7 +374,16 @@ public class TcpTransportServer extends TransportServerThreadSupport implements
while (!isStopped() && !isStopping()) {
Socket sock = socketQueue.poll(1, TimeUnit.SECONDS);
if (sock != null) {
try {
handleSocket(sock);
} catch (Throwable thrown) {
if (!isStopping()) {
onAcceptError(new Exception(thrown));
} else if (!isStopped()) {
LOG.warn("Unexpected error thrown during accept handling: ", thrown);
onAcceptError(new Exception(thrown));
}
}
}
}
@ -519,6 +528,7 @@ public class TcpTransportServer extends TransportServerThreadSupport implements
return allowLinkStealing;
}
@Override
public void setAllowLinkStealing(boolean allowLinkStealing) {
this.allowLinkStealing = allowLinkStealing;
}