Hi all,
I'm not sure if this is a bug or not.
I got a deadletter when using the Respond after persisting a messaging.
if !a.Recovering() {
a.PersistReceive(msg)
ctx.Respond(..new..message..)
}
I only get the issue when PersistReceive will Request a Snapshot.
After reversing the order
if !a.Recovering() {
ctx.Respond(..new..message..)
a.PersistReceive(msg)
}
Everything works as expected.