mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fetch module doesn't set invocation parameter as it invokes nothing, so don't let that be an error.
This commit is contained in:
parent
39f912899f
commit
321ed53e3a
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
|
||||||
print "failed: [%s] => %s => %s\n" % (host, invocation, utils.smjson(results))
|
print "failed: [%s] => %s => %s\n" % (host, invocation, utils.smjson(results))
|
||||||
|
|
||||||
def on_ok(self, host, host_result):
|
def on_ok(self, host, host_result):
|
||||||
invocation = host_result.get('invocation',None)
|
invocation = host_result.get('invocation','')
|
||||||
if invocation.startswith('async_status'):
|
if invocation.startswith('async_status'):
|
||||||
pass
|
pass
|
||||||
elif not invocation or invocation.startswith('setup '):
|
elif not invocation or invocation.startswith('setup '):
|
||||||
|
|
Loading…
Reference in a new issue