mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
f52c498aa1
commit
31239f44cd
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ class TaskExecutor:
|
||||||
for attempt in range(retries):
|
for attempt in range(retries):
|
||||||
if attempt > 0:
|
if attempt > 0:
|
||||||
# FIXME: this should use the callback/message passing mechanism
|
# FIXME: this should use the callback/message passing mechanism
|
||||||
print("FAILED - RETRYING: %s (%d retries left)" % (self._task, retries-attempt))
|
print("FAILED - RETRYING: %s (%d retries left). Result was: %s" % (self._task, retries-attempt, result))
|
||||||
result['attempts'] = attempt + 1
|
result['attempts'] = attempt + 1
|
||||||
|
|
||||||
debug("running the handler")
|
debug("running the handler")
|
||||||
|
|
Loading…
Reference in a new issue