Skip to content
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
8 changes: 7 additions & 1 deletion .github/workflows/container-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,18 @@ jobs:
. docker-compose/.test.env
set +e
for i in $( seq 40000 ) ; do
if ! curl --silent --show-error --fail-with-body --insecure --output /dev/null --max-time 1 "${URL}healthz/" ; then
# A request assigned to a retiring worker can briefly stall; retries still detect a service which does not recover.
if ! curl --silent --show-error --fail-with-body --insecure --output /dev/null --max-time 1 --retry 3 --retry-all-errors --retry-delay 0 "${URL}healthz/" ; then
echo "Failed after $i requests!"
exit 1
fi
done
- name: Display logs
if: always()
working-directory: docker-compose
run: ./test-logs
- name: Shutdown service
if: always()
working-directory: docker-compose
run: ./test-stop
permissions:
Expand Down
Loading