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>
main
Jahn Thomas Fidje 4 years ago committed by GitHub
parent fc7940c77b
commit dcbbd067f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save