Skip to content

Commit

Permalink
Increase retries to 5 hoping to reduce flakiness.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 9, 2022
1 parent 7715ca1 commit edfb2d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def retry_ntp_query(request, monkeypatch):
from jaraco.net import ntp

retry = jaraco.functools.retry(
retries=2,
retries=4,
trap=socket.timeout,
)
monkeypatch.setattr(ntp, 'query', retry(ntp.query))

0 comments on commit edfb2d4

Please sign in to comment.