MatchError in RemoteDaemon case AddressTerminated, see #2660
This commit is contained in:
parent
3ee7dbcc45
commit
06199e3f8f
1 changed files with 4 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue