Jacek Tomaszewski
Jacek Tomaszewski
> I understand that as soon as job is active you want to enable to enqueue a new job with same deduplication id. I think you can use this method...
Yes, you are right with both of your last two comments :) That's true ,not every push gets deployed, but the last one surely will.
I'm not sure this entirely resolves this issue. Correct me if I'm wrong, but it requires me to delay **all** jobs by a certain time period (TTL)? What if I...
Hey @manast . I need: - no arbitrary delays (run a job as soon as possible) - **never run the same job twice in parallel** (instead, either skip processing it...
Does the tip mentioned in https://github.com/KurtzL/nestjs-temporal/issues/54#issuecomment-2179000500 fixes this problem for you? (Adding `app.enableShutdownHooks()`) It does to me.