1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

fix job launch deadlock

* This both fixes the deadlock problem and a logic problem. We shouldn't
set the job's job_template current_job to pending jobs.
This commit is contained in:
Chris Meyers 2017-06-29 13:27:17 -04:00 committed by Matthew Jones
parent 459c33d272
commit 7a795b8681

View File

@ -713,7 +713,7 @@ class UnifiedJob(PolymorphicModel, PasswordFieldsModel, CommonModelNameNotUnique
result = super(UnifiedJob, self).save(*args, **kwargs)
# If status changed, update the parent instance.
if self.status != status_before:
if self.status != status_before and self.status != 'pending':
self._update_parent_instance()
# Done.