Merge pull request #1604 from akka/wip-migration-fix-patriknw

DOC: Fix compilation error in migration guide
This commit is contained in:
Roland Kuhn 2013-07-08 10:14:38 -07:00
commit 09ee9bfbf4

View file

@ -320,7 +320,7 @@ Instead, use actorSelection followed by identify request, and watch the verified
ref = actorRef
context watch ref
case ActorIdentity(_, None) => // not alive
case Terminated(`ref`) => // ...
case Terminated(r) if r == ref => // ...
}
Use ``watch`` instead of ``isTerminated``