We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Job.__init__() missing 1 required argument: 'connection' when I try and view a dependent job.
Job.__init__() missing 1 required argument: 'connection'
To Reproduce
q = Queue('high', connection=my_redis_conn) report_job = q.enqueue(generate_report, retry=Retry(max=3, interval=[10, 30, 60])) send_report_job = q.enqueue(send_report, retry=Retry(max=3, interval=[10, 30, 60]), depends_on=report_job)
Expected behavior No error.
Additional context
It seems this error is handled in #500 but this was never released as a new package available on pip.
The text was updated successfully, but these errors were encountered:
Would be nice to have this resolved as well in the next version: #501
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Job.__init__() missing 1 required argument: 'connection'
when I try and view a dependent job.To Reproduce
Expected behavior
No error.
Additional context
It seems this error is handled in #500 but this was never released as a new package available on pip.
The text was updated successfully, but these errors were encountered: