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:
Jahn Thomas Fidje 2021-02-24 12:33:58 +01:00 committed by GitHub
parent fc7940c77b
commit dcbbd067f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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