async_status: Update documentation (#70196)

Fixes: #38164

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2020-06-23 21:15:54 +05:30 committed by GitHub
parent 4b358c6641
commit 40a42de081
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -102,7 +102,8 @@ If you need a synchronization point with an async task, you can register it to o
jid: "{{ yum_sleeper.ansible_job_id }}"
register: job_result
until: job_result.finished
retries: 30
retries: 100
delay: 10
.. note::
If the value of ``async:`` is not high enough, this will cause the

View file

@ -54,7 +54,8 @@ EXAMPLES = r'''
jid: '{{ yum_sleeper.ansible_job_id }}'
register: job_result
until: job_result.finished
retries: 30
retries: 100
delay: 10
'''
RETURN = r'''