Skip to content

Commit d406b0f

Browse files
KoderFPVclaude
andcommitted
fix: Use curl from Jenkins to check Weaviate readiness
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent db6e784 commit d406b0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Jenkinsfile.eval

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pipeline {
3535
timeout 60 bash -c 'until docker exec cognito-eval-mongo mongosh --eval "db.runCommand({ ping: 1 })" > /dev/null 2>&1; do sleep 2; done'
3636

3737
echo "Waiting for Weaviate..."
38-
timeout 120 bash -c 'until docker exec cognito-eval-weaviate curl -s http://localhost:8080/v1/.well-known/ready > /dev/null 2>&1; do sleep 2; done'
38+
timeout 120 bash -c 'until curl -s http://172.17.0.1:8081/v1/.well-known/ready > /dev/null 2>&1; do sleep 2; done'
3939

4040
echo "Infrastructure ready!"
4141
'''

0 commit comments

Comments
 (0)