MatchError in RemoteDaemon case AddressTerminated, see #2660

This commit is contained in:
Patrik Nordwall 2012-10-26 16:56:23 +02:00
parent 3ee7dbcc45
commit 06199e3f8f

View file

@ -102,7 +102,10 @@ private[akka] class RemoteSystemDaemon(
}
case AddressTerminated(address)
foreachChild { case a: InternalActorRef if a.getParent.path.address == address system.stop(a) }
foreachChild {
case a: InternalActorRef if a.getParent.path.address == address system.stop(a)
case _ // skip, this child doesn't belong to the terminated address
}
case unknown log.warning("Unknown message {} received by {}", unknown, this)
}