Skip to content

Commit f0c36a4

Browse files
authored
[TST]: Rust cluster tests were using wrong port (#3865)
## Description of changes I accidentally changed the port in #3838. Port 3000 is the Rust frontend, port 8000 is the Python frontend.
1 parent 2098199 commit f0c36a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/tilt/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ runs:
3030
kubectl -n chroma port-forward svc/logservice 50052:50051 &
3131
kubectl -n chroma port-forward svc/query-service 50053:50051 &
3232
kubectl -n chroma port-forward svc/frontend-service 8000:8000 &
33-
kubectl -n chroma port-forward svc/rust-frontend-service 3000:3000 &
33+
kubectl -n chroma port-forward svc/rust-frontend-service 3000:8000 &
3434
kubectl -n chroma port-forward svc/minio 9000:9000 &
3535
kubectl -n chroma port-forward svc/jaeger 16686:16686 &

.github/workflows/_python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
env:
230230
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
231231
CHROMA_RUST_FRONTEND_TEST_ONLY: "1"
232-
CHROMA_SERVER_HOST: "localhost:8000"
232+
CHROMA_SERVER_HOST: "localhost:3000"
233233
- name: Compute artifact name
234234
if: always()
235235
id: compute-artifact-name

0 commit comments

Comments
 (0)