thenativeweb / node-cqrs-saga

Node-cqrs-saga is a node.js module that helps to implement the sagas in cqrs. It can be very useful as domain component if you work with (d)ddd, cqrs, eventdenormalizer, host, etc.
http://cqrs.js.org/pages/saga.html
MIT License
61 stars 16 forks source link

MongoDB >=2.0.0 driver support #35

Closed repkins closed 7 years ago

repkins commented 7 years ago

Hello, @adrai !

I came across with issue running sagas using with newer mongodb versions. Apparenlty it does not work with new auto reconnect feature anymore starting with version of 2.0. So there associated driver still uses old deprecated auto reconnect variant which apparently has been removed in MongoDB.

P.S. Most likely in other cqrs-ddd related NPM packages also have this issue.

adrai commented 7 years ago

Try new version: https://github.com/adrai/node-cqrs-saga/compare/v1.6.25...v1.6.26

repkins commented 7 years ago

Oh, great. Thanks!