Skip to content

Commit a7f0661

Browse files
KoderFPVclaude
andcommitted
fix: Change eval Weaviate ports to avoid Jenkins conflict
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent e59ed01 commit a7f0661

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Jenkinsfile.eval

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ pipeline {
1111
OLLAMA_MODEL = 'mistral-small3.2:24b-instruct-2506-q8_0'
1212
MONGODB_URI = 'mongodb://localhost:27017/cognito-eval'
1313
WEAVIATE_HTTP_HOST = 'localhost'
14-
WEAVIATE_HTTP_PORT = '8080'
14+
WEAVIATE_HTTP_PORT = '8081'
1515
WEAVIATE_GRPC_HOST = 'localhost'
16-
WEAVIATE_GRPC_PORT = '50051'
16+
WEAVIATE_GRPC_PORT = '50052'
1717
WEAVIATE_SECURE = 'false'
1818
WEAVIATE_API_KEY = ''
1919
}
@@ -34,7 +34,7 @@ pipeline {
3434
timeout 60 bash -c 'until docker exec cognito-eval-mongo mongosh --eval "db.runCommand({ ping: 1 })" > /dev/null 2>&1; do sleep 2; done'
3535

3636
echo "Waiting for Weaviate..."
37-
timeout 120 bash -c 'until curl -s http://localhost:8080/v1/.well-known/ready > /dev/null 2>&1; do sleep 2; done'
37+
timeout 120 bash -c 'until curl -s http://localhost:8081/v1/.well-known/ready > /dev/null 2>&1; do sleep 2; done'
3838

3939
echo "Infrastructure ready!"
4040
'''

docker-compose.eval.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ services:
1515
image: docker.io/semitechnologies/weaviate:1.35.0
1616
container_name: cognito-eval-weaviate
1717
ports:
18-
- "8080:8080"
19-
- "50051:50051"
18+
- "8081:8080"
19+
- "50052:50051"
2020
environment:
2121
LOG_LEVEL: "warning"
2222
QUERY_DEFAULTS_LIMIT: 100

0 commit comments

Comments
 (0)