netty: Add to "An established connection was aborted by the software in your host machine" QUIET_ERRORS

This commit is contained in:
Nicholas DiPiazza 2018-11-13 16:13:36 -06:00 committed by ZHANG Dapeng
parent 8481943866
commit 7c05127cbc
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@ class NettyServerTransport implements ServerTransport {
// Some exceptions are not very useful and add too much noise to the log
private static final ImmutableList<String> QUIET_ERRORS = ImmutableList.of(
"Connection reset by peer",
"An existing connection was forcibly closed by the remote host");
"An existing connection was forcibly closed by the remote host",
"An established connection was aborted by the software in your host machine");
private final InternalLogId logId = InternalLogId.allocate(getClass().getName());
private final Channel channel;