Chris Lush

Results 15 comments of Chris Lush

If you don't want to override your entity repository's default query builder you can implement a separate method and then configure the bundle to use it, e.g. ``` persistence: driver:...

I believe this is due to both `repeatEvery()` and `repeatAt()` being called. Because an interval is set, when the job computes its next run time it'll be using that rather...

#336, #375, and maybe others are due to the fact that job definitions are being declared dynamically. https://github.com/agenda/agenda/issues/109#issuecomment-60286993 explains why this doesn't work, although the example given is slightly wrong...

@bradwbradw when a job is picked up and ran the `lockedAt` attribute is set to the current timestamp, but a job won't be unlocked if it's interrupted while running (by...

@bradwbradw sorry, didn't see you replied with your job object. When the job is completed it has a `lastFinishedAt` field set, which yours hasn't got, so didn't complete. If you...

Closing as this is now 2 major versions behind and I can't commit to supporting this change further.

Thank you @bodokaiser this seemed to work for me 🙌 However, I did find in v0.12.3 that the `runtime/runtime.go` file was missing the necessary logic for registering the hooks, which...

The `aws_appsync_resolver` resource may be affected as well.

46ff788, 9b975e0, and 228464c (except [lib/agenda.js](https://github.com/agenda/agenda/pull/443/commits/228464c505dcd1fc3de18fcdebeffaaf7dbe6b2c#diff-1ba7680cb21f30bb02af3c7899c41248)) should be a separate PR since these commits might address #402 by adding a useful new feature, and potentially squish similar timezone bugs for...

Copying over my previous comment... We could check if the job is still in the database in `runOrRetry()` at the same point it [checks if the lock has expired](https://github.com/agenda/agenda/blob/da73bcc2cf7be7b9891d070728eda4b8ba31974a/lib/agenda.js#L652). Since...