Hi,
I've been upgrading to Axon 4 today. A lot of packages seems to have moved around (new package names), but I think it's more logical and I managed to refactor most of my code.
We are using MongoDB as an event store and token store. All my unit tests work again, but when I start the application, all my sagas try to connect to Axon server for looking up their tracking tokens.
I get these errors in my logs:
o.a.e.TrackingEventProcessor - Fetch Segments for Processor 'EnrollEmployeeToPPVDSagaProcessor' failed: No connection to AxonServer available.
So how do I exclude AxonServer (for now) and make MongoDB my event and token store again?
I use to have this in my config class:
@Bean
public SagaConfiguration enrollEmployeeFromPPVDSagaConfiguration() {
return SagaConfiguration.trackingSagaManager(EnrollEmployeeFromPPVDSaga.class);
}
But this doesn't work anymore.
Thanks,
Danny