mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[package testing] Stabilize status api test (#129228)
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.
This commit is contained in:
parent
96ab9bb257
commit
f2654802a5
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