diff --git a/akka-actor/src/main/scala/akka/io/TcpConnection.scala b/akka-actor/src/main/scala/akka/io/TcpConnection.scala index 812983ad56..b91daf4c68 100644 --- a/akka-actor/src/main/scala/akka/io/TcpConnection.scala +++ b/akka-actor/src/main/scala/akka/io/TcpConnection.scala @@ -199,6 +199,7 @@ private[io] abstract class TcpConnection(val tcp: TcpExt, val channel: SocketCha def unregistering: Receive = { case Unregistered => context.stop(self) // postStop will notify interested parties case ChannelReadable | ChannelWritable | ChannelAcceptable | ChannelConnectable => // ignore, we are going away soon anyway + case _: DeadLetterSuppression => // ignore } // AUXILIARIES and IMPLEMENTATION