mirror of https://github.com/rq/rq.git
bugfix: Add self.serializer when calling self.fetch_many in Job.fetch_dependencies (#1411)
Co-authored-by: Jahn Thomas Fidje <jahn-thomas.fidje@telenor.com>
This commit is contained in:
parent
fc7940c77b
commit
dcbbd067f0
|
@ -440,7 +440,7 @@ class Job(object):
|
|||
connection.watch(*self._dependency_ids)
|
||||
|
||||
jobs = [job
|
||||
for job in self.fetch_many(self._dependency_ids, connection=self.connection)
|
||||
for job in self.fetch_many(self._dependency_ids, connection=self.connection, serializer=self.serializer)
|
||||
if job]
|
||||
|
||||
return jobs
|
||||
|
|
Loading…
Reference in New Issue