Skip to content

Commit

Permalink
Lengthen default test timeout to 15 seconds
Browse files Browse the repository at this point in the history
On busy CI servers, I suspect some flakiness, as in the case of elastic#8667 (review) is due to the server being temporarily too busy.

Let's try lengthening this time to see if that helps.
  • Loading branch information
andrewvc committed Nov 1, 2018
1 parent cfdea3d commit a4b5127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbeat/tests/system/beat/beat.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def setUp(self):
# running tests in parallel
pass

def wait_until(self, cond, max_timeout=10, poll_interval=0.1, name="cond"):
def wait_until(self, cond, max_timeout=15, poll_interval=0.1, name="cond"):
"""
Waits until the cond function returns true,
or until the max_timeout is reached. Calls the cond
Expand Down

0 comments on commit a4b5127

Please sign in to comment.