Skip to content

Commit 0fe5817

Browse files
committed
fix(ci): Use port 5001 for go-libsql embedded replica tests
The embedded replica tests use gRPC protocol, which runs on port 5001. The original CI was using port 8080 (HTTP/Hrana), which doesn't support native gRPC (only gRPC-Web over HTTP/1.1). This fixes the 'Timeout performing handshake with primary' error in the golang-bindings CI job.
1 parent ad80427 commit 0fe5817

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/golang-bindings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ jobs:
8989
working-directory: go-libsql
9090
run: go test -v -count=1 ./...
9191
env:
92-
LIBSQL_PRIMARY_URL: "http://127.0.0.1:8080"
92+
LIBSQL_PRIMARY_URL: "http://127.0.0.1:5001"

0 commit comments

Comments
 (0)