Skip to content

Commit

Permalink
Fix failing HTTP client stats test (elastic#75527)
Browse files Browse the repository at this point in the history
  • Loading branch information
danhermann authored and ywangd committed Jul 30, 2021
1 parent 1213572 commit 3a2e081
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -300,7 +300,8 @@
nodes.stats: { metric: http }

- is_true: nodes.$node_id
- gte: { nodes.$node_id.http.current_open: 1 }
# in rare test scenarios, the value of current_open can be zero
- gte: { nodes.$node_id.http.current_open: 0 }
- gte: { nodes.$node_id.http.total_opened: 1 }
- is_true: nodes.$node_id.http.clients
- gte: { nodes.$node_id.http.clients.0.id: 1 }
Expand Down

0 comments on commit 3a2e081

Please sign in to comment.