mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge branch 'hfinucane-gh-7432' into devel
This commit is contained in:
commit
503f7afbd8
3 changed files with 12 additions and 3 deletions
|
@ -415,6 +415,7 @@ class CliRunnerCallbacks(DefaultRunnerCallbacks):
|
|||
super(CliRunnerCallbacks, self).on_async_poll(host, res, jid, clock)
|
||||
|
||||
def on_async_ok(self, host, res, jid):
|
||||
if jid:
|
||||
display("<job %s> finished on %s => %s"%(jid, host, utils.jsonify(res,format=True)), runner=self.runner)
|
||||
super(CliRunnerCallbacks, self).on_async_ok(host, res, jid)
|
||||
|
||||
|
@ -568,6 +569,7 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
|
|||
super(PlaybookRunnerCallbacks, self).on_async_poll(host,res,jid,clock)
|
||||
|
||||
def on_async_ok(self, host, res, jid):
|
||||
if jid:
|
||||
msg = "<job %s> finished on %s"%(jid, host)
|
||||
display(msg, color='cyan', runner=self.runner)
|
||||
super(PlaybookRunnerCallbacks, self).on_async_ok(host, res, jid)
|
||||
|
|
|
@ -43,6 +43,7 @@ class AsyncPoller(object):
|
|||
self.active = True
|
||||
else:
|
||||
skipped = skipped and res.get('skipped', False)
|
||||
self.runner.vars_cache[host]['ansible_job_id'] = ''
|
||||
self.results['contacted'][host] = res
|
||||
for (host, res) in results['dark'].iteritems():
|
||||
self.runner.vars_cache[host]['ansible_job_id'] = ''
|
||||
|
|
|
@ -56,3 +56,9 @@
|
|||
- "'ansible_job_id' in async_result"
|
||||
- "'started' in async_result"
|
||||
- "'finished' not in async_result"
|
||||
|
||||
- name: test skipped task handling
|
||||
command: /bin/true
|
||||
async: 15
|
||||
poll: 0
|
||||
when: False
|
||||
|
|
Loading…
Reference in a new issue