Closed miken closed 9 years ago
I'm also experiencing this issue. From looking at https://github.com/nvie/rq/blob/master/rq/worker.py#L381, it appears that you are right @miken.
I will submit a PR if you have not.
@ryanisnan Please go ahead and create a PR. Thanks for looking into it!
This issue should be resolved in PR #6
Yikes! Closed now :) Bugfix release coming..
Done, 0.2.2 is on PyPI.
Thanks Jannis! @jezdez
Hi,
I'm using django-rq with hirefire and ran into a 500 server error after having my background tasks run. It's a TypeError saying "argument of type 'instancemethod' is not iterable." Upon investigating further, I think the issue is with procs/rq.py: there are missing parentheses for the method queue_names.
Currently it looks like this in rq.py:
After adding () to queue_names as follows, I don't run into that same error anymore.
Let me know if I can provide more context to help with. Thanks!