Chris Raynor
Chris Raynor
This is an interesting feature request, and in general scheduled operations come up a lot. They are, however, hard in a distributed system with only peers. I'll leave this task...
Could you include your specs and share some of the code that adds onto the queue. Also, is the express stuff important to the repro?
Your vote has very much been counted. For now the work-around for a delayed job is a 'waiting room' style task that claims a job, resolves it if the condition...
Thanks for the feature request. Of course, PRs are always welcome!
100 workers is a large number of tasks to be processed in parallel in a single node process for most tasks (unless they're highly async). First off, I'd suggest lowering...
the `1.6.1` release fixed a bug in timeouts that could be related to some of these symptoms. Can you check out the new release and report back if things still...
Not currently. Do you have an example of what you're trying to achieve?
I've been considering having multiple success states, but I haven't figured out a way yet that doesn't rely on the `processingFunction` having to know the exact states it's allowed to...
This is interesting - perhaps something like `reject(false)` on the processing function or some other sentinel value to indicate that the job wasn't processed but it didn't fail either. In...
I asked because it changes the implementation details of the predicate check - if it's synchronous and quick (like a lodash predicate function for example) it could be inside a...