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
parent 413976f2f7
commit 668bce8212

View File

@ -712,7 +712,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.