This repository was archived by the owner on Dec 15, 2019. It is now read-only.

Description
During recovery (ex: restarting the actor), I am not getting any of the messages replayed. I am immediately just receiving RecoveryComplete. Any ideas?
Code example:
val receiveRecover: Receive = {
case message: MyMessageType => println(message) // never receive this
case recoveryComplete: RecoveryCompleted => // receive this immediately
case _ => println("Unhandled message") // never receive this
}
Thanks in advance.