Skip to content

Commit 97a1624

Browse files
authored
Go Debug fallback ports collides with internal testing environments (#4306)
In #4216, we exposed Go debug port for services in local dev-env. The sample `.env.example` ports for these were carefully chosen so they wouldn't collide with ClickHouse internal testing tooling: https://github.com/PeerDB-io/peerdb/blob/1bce75b767bfd293e18f3a4c671c75090fce7651/.env.example#L69-L71 But the fallback ports in Tiltfile didn't fall into the same range. This PR fixes the fallback ports.
1 parent 1bce75b commit 97a1624

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Tiltfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ temporal_port = resolve_env('TEMPORAL_PORT', '7233')
1515
temporal_ui_port = resolve_env('TEMPORAL_UI_PORT', '8085')
1616
flow_api_grpc_port = resolve_env('FLOW_API_PORT', '8112')
1717
flow_api_http_port = resolve_env('FLOW_API_HTTP_PORT', '8113')
18-
docker_go_debug_port_flow_worker = resolve_env('DOCKER_GO_DEBUG_PORT_FLOW_WORKER', '4001')
19-
docker_go_debug_port_flow_snapshot_worker = resolve_env('DOCKER_GO_DEBUG_PORT_FLOW_SNAPSHOT_WORKER', '4002')
20-
docker_go_debug_port_flow_api = resolve_env('DOCKER_GO_DEBUG_PORT_FLOW_API', '4003')
18+
docker_go_debug_port_flow_worker = resolve_env('DOCKER_GO_DEBUG_PORT_FLOW_WORKER', '14001')
19+
docker_go_debug_port_flow_snapshot_worker = resolve_env('DOCKER_GO_DEBUG_PORT_FLOW_SNAPSHOT_WORKER', '14002')
20+
docker_go_debug_port_flow_api = resolve_env('DOCKER_GO_DEBUG_PORT_FLOW_API', '14003')
2121

2222
flow_ignore = ['flow/e2e/', 'flow/**/*_test.go']
2323

0 commit comments

Comments
 (0)