Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase some timeouts in integration tests #3203

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions integration/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ wait_for_server_startup() {
# as the test will fail if the server is really not up.
local port=$1
set +e
wget -q --spider --retry-connrefused --waitretry=1 -t 10 localhost:${port}
wget -q --spider --retry-connrefused --waitretry=2 -t 20 localhost:${port}
# Wait a bit more to give it a chance to become actually available, e.g. if CI
# environment is slow.
sleep 2
sleep 5
wget -q --spider -t 1 localhost:${port}
local rc=$?
set -e
Expand Down
Loading