mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-27 05:43:09 +00:00
* Fix unassigned variable
* Create 1721-fix-nomad_job_info-no-jobs-failure.yml
* refactor usage of variables in nomad_job_info
* Update changelogs/fragments/1721-fix-nomad_job_info-no-jobs-failure.yml
Co-authored-by: Felix Fontein <felix@fontein.de>
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit d09a558fda)
Co-authored-by: Víctor Suárez Fernández <15276132+vicsufer@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- nomad_job_info - fix module failure when nomad client returns no jobs (https://github.com/ansible-collections/community.general/pull/1721).
|
||||
@@ -312,12 +312,11 @@ def run():
|
||||
)
|
||||
|
||||
changed = False
|
||||
nomad_jobs = list()
|
||||
result = list()
|
||||
try:
|
||||
job_list = nomad_client.jobs.get_jobs()
|
||||
for job in job_list:
|
||||
nomad_jobs.append(nomad_client.job.get_job(job.get('ID')))
|
||||
result = nomad_jobs
|
||||
result.append(nomad_client.job.get_job(job.get('ID')))
|
||||
except Exception as e:
|
||||
module.fail_json(msg=to_native(e))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user