Fix restart strategy spec by resuming on restart

This commit is contained in:
Peter Vlugter 2011-09-26 15:02:44 +02:00
parent e4947de718
commit 648c8698a6

View file

@ -372,8 +372,10 @@ private[akka] class ActorCell(
currentMessage = null
}
if (success)
if (success) {
dispatcher.resume(this)
restartLinkedActors(reason, maxNrOfRetries, withinTimeRange)
}
success
}