Skip to content

Commit

Permalink
Fix: Add missing connection parameter for jobs with dependencies (#500)
Browse files Browse the repository at this point in the history
  • Loading branch information
prepin authored Dec 10, 2024
1 parent e1a90e8 commit 0a84a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rq_dashboard/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ def job_info(instance_number, job_id):
status = []
for dep_id in dep_ids:
try:
_ = Job.fetch(dep_id, serializer=config.serializer)
_ = Job.fetch(dep_id, serializer=config.serializer, connection=current_app.redis_conn)
status.append('active')
except NoSuchJobError:
status.append('expired')
Expand Down

0 comments on commit 0a84a8c

Please sign in to comment.