mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #9772 from jszwedko/allow-template-for-retries
Allow retries to be templatable
This commit is contained in:
commit
7ea2aff272
1 changed files with 1 additions and 1 deletions
|
@ -1034,7 +1034,7 @@ class Runner(object):
|
|||
|
||||
cond = template.template(self.basedir, until, inject, expand_lists=False)
|
||||
if not utils.check_conditional(cond, self.basedir, inject, fail_on_undefined=self.error_on_undefined_vars):
|
||||
retries = self.module_vars.get('retries')
|
||||
retries = template.template(self.basedir, self.module_vars.get('retries'), inject, expand_lists=False)
|
||||
delay = self.module_vars.get('delay')
|
||||
for x in range(1, int(retries) + 1):
|
||||
# template the delay, cast to float and sleep
|
||||
|
|
Loading…
Reference in a new issue