mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 18:40:01 -03:30
use workflow_template_id
This commit is contained in:
parent
c96cf3cf5d
commit
da603dd3ad
@ -482,11 +482,11 @@ class TaskManager():
|
||||
found_acceptable_queue = False
|
||||
idle_instance_that_fits = None
|
||||
if isinstance(task, WorkflowJob):
|
||||
running_workflow_templates = [wf.workflow_job_template.pk for wf in self.get_running_workflow_jobs()]
|
||||
running = task.workflow_job_template.pk in running_workflow_templates
|
||||
running_workflow_templates = [wf.workflow_job_template_id for wf in self.get_running_workflow_jobs()]
|
||||
running = task.workflow_job_template_id in running_workflow_templates
|
||||
if running:
|
||||
if not task.allow_simultaneous:
|
||||
logger.debug(six.text_type("{} is blocked from running, workflow already running").format(task.log_format, task.workflow_job_template.pk))
|
||||
logger.debug(six.text_type("{} is blocked from running, workflow already running").format(task.log_format))
|
||||
continue
|
||||
self.start_task(task, None, task.get_jobs_fail_chain(), None)
|
||||
continue
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user