We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b840c5c commit b391e33Copy full SHA for b391e33
.github/workflows/pr-e2e-tests.yaml
@@ -69,7 +69,7 @@ jobs:
69
- name: Wait for Weaviate to start
70
run: |
71
count=0
72
- until curl -s localhost:8080/v1/.well-known/ready; do
+ until curl -v localhost:8080/v1/.well-known/ready; do
73
exit_code=$?
74
# Check if the exit code is 22 (HTTP failure) or 7 (connection refused)
75
if [ $exit_code -eq 22 ] || [ $exit_code -eq 7 ]; then
0 commit comments