From 7c05127cbc1c381c99d5cc8dce3c261ef3edd36f Mon Sep 17 00:00:00 2001 From: Nicholas DiPiazza Date: Tue, 13 Nov 2018 16:13:36 -0600 Subject: [PATCH] netty: Add to "An established connection was aborted by the software in your host machine" QUIET_ERRORS --- netty/src/main/java/io/grpc/netty/NettyServerTransport.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netty/src/main/java/io/grpc/netty/NettyServerTransport.java b/netty/src/main/java/io/grpc/netty/NettyServerTransport.java index 197601b69d..8cf9efdd40 100644 --- a/netty/src/main/java/io/grpc/netty/NettyServerTransport.java +++ b/netty/src/main/java/io/grpc/netty/NettyServerTransport.java @@ -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 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;