mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
There appears to be a brief moment after kibana starts where we are
listening for http connections but immediately closing requests to the
status API. The return code by ansible here is -1, so this adds that as
a valid response to retry.
(cherry picked from commit f2654802a5
)
Co-authored-by: Jonathan Budzenski <jon@elastic.co>
This commit is contained in:
parent
a82fbbd6ba
commit
313e1b55a4
1 changed files with 1 additions and 1 deletions
|
@ -4,6 +4,6 @@
|
|||
status_code: [200, 401]
|
||||
timeout: 120
|
||||
register: result
|
||||
until: result.status != 503
|
||||
until: result.status not in [503, -1]
|
||||
retries: 3
|
||||
delay: 30
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue