Nisheet Sinvhal

Results 10 comments of Nisheet Sinvhal

Thanks for the quick reply @benjie really appreciate it! :raised_hands: Continuing on the reply... Does this mean that even the "4 hour" interval is just a random value that you...

Hmmmm... To address my original question then, what do you think about the following: 1. Modify the `jobs` table to have an additional column `locked_interval` which would have a default...

> So you think that rather than doing the lock duration on a per-queue or per-task-identifier basis that it should be on a per-job basis - basically it's up to...

Hey. Did think of a better solution yet? :monocle_face:

Any update on this or a workaround?

I would also love to assist with the work on bootstrap 5.

Hey @kodeine. Thanks for your interest in this repo. > A question that arise is why GET request is on the View/ Query side? That is how CQRS works. Another...

Reference for using Sagas in nestjs is [here](https://docs.nestjs.com/recipes/cqrs#sagas). In addition to the above, you'll have to add the following code (not in the official nestjs documentation) ``` import { CustomerSagas...

> And right now the Kafka module just emits the event, I wasn't able to receive the event reply. You can return the "Record" that is sent by the [producer](https://github.com/Ashniu123/nestjs-customer-order-eventsourcing-cqrs/blob/master/libs/kafka/src/kafka.service.ts#L63)....

> axios: 'axios/dist/node/axios.cjs' This works. Btw a more apt fix would be ``` moduleNameMapper: { '^axios$': 'axios/dist/node/axios.cjs' }, ``` so that no other module like "gaxios" from googleapis, or any...