Skip to content

Commit 8c5ceb2

Browse files
Fix for flaky E2E test (take 2) (neo4j#56)
* Add the verbose flag to the curl command for troubleshooting purposes * Set +e explicitly * Bump the retry limit because I saw it time out * go back to 10 retries
1 parent e6c0d4b commit 8c5ceb2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/pr-e2e-tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ jobs:
6969
- name: Wait for Weaviate to start
7070
shell: bash
7171
run: |
72+
set +e
7273
count=0; until curl -s --fail localhost:8080/v1/.well-known/ready; do ((count++)); [ $count -ge 10 ] && echo "Reached maximum retry limit" && exit 1; sleep 15; done
7374
- name: Run tests
7475
shell: bash

0 commit comments

Comments
 (0)