Selwin Ong

Results 476 comments of Selwin Ong

@nvie I took a stab at porting `ForkingWorker` from your gist to rq, it's still in a pretty rough state and doesn't actually perform jobs yet but here's what I...

@nvie I just read [your comment](https://github.com/nvie/rq/issues/45#issuecomment-8175771) again for the second time and it seems like I misunderstood how you want it to be implemented. Now that I finally understand, I...

RQ currently doesn't handle duplicated job_id so you should make sure that you job IDs are unique. RQ itself uses UUID so job IDs are always unique. Having said that,...

Agreed, this would be a nice feature to have. If someone wants to take a crack at this, I have some ideas on how this can be implemented.

@twelvelabs please update this when you can :)

In general, I support the idea of passing custom parameters to `on_success` and `on_failure` callbacks, but it comes down to whether we can do it elegantly. If you have some...

I’d be happy tonaccept a PR implementing custom args.