add None check before dependencies_are_met (#1532)

This commit is contained in:
César Ferradas 2021-08-20 02:21:34 +01:00 committed by GitHub
parent 5dab16d9e9
commit 794556c74b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ nd
dependent_job_ids,
connection=self.connection,
serializer=self.serializer
) if dependent_job.dependencies_are_met(
) if dependent_job and dependent_job.dependencies_are_met(
exclude_job_id=job.id,
pipeline=pipe
)