This is almost certainly related to 3.0M4 AsynchronousCommandBus and Sagas Issue
I.e. Works fine for SimpleCommandBus, but not for AsynchronousCommandBus.
My Saga starts fine, but when using AsynchronousCommandBus it fails to handle an event. The StartSaga ‘handle’ method (which works); sends command to the aggregate; which fires an event that is never received by the same Saga (in the Async case).
It looks like (through debug) that it’s failing to find the saga through the association. AbstractSagaManager.java (ln:85)
Is there a way to force the Sagas association early? The other thread mentioned it, but didn’t give much details.
Any other suggestions?
I’m using Axon Framework 4.9.0