SAGA icon indicating copy to clipboard operation
SAGA copied to clipboard

A Distributed Transaction Library based on Node.js and MongoDB

Results 2 SAGA issues
Sort by recently updated
recently updated
newest added

I created the saga ```javascript module.exports = { id: 'createTournamentSaga', flow: [ { id: "create tournament", transaction: async ({ initial, transactionValues }) => { const command = new CreateTournamentCommand( initial.playerId,...

I think that we should throw exception after successful or unsuccessful rollback so that the client have a possibility handle this exception because now I don't know where the error...