Skip to content

Commit 22de03d

Browse files
committed
ci: Enable gRPC endpoint for golang-bindings test
Add --grpc-listen-addr flag to start the gRPC replication endpoint. The embedded replication tests require this endpoint to sync with primary.
1 parent d176c2d commit 22de03d

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
@@ -72,7 +72,7 @@ jobs:
7272

7373
- name: Start sqld server
7474
run: |
75-
./target/release/sqld --http-listen-addr 127.0.0.1:8080 &
75+
./target/release/sqld --http-listen-addr 127.0.0.1:8080 --grpc-listen-addr 127.0.0.1:5001 &
7676
# Wait for server to be ready
7777
for i in {1..30}; do
7878
if curl -s http://127.0.0.1:8080/health > /dev/null 2>&1; then

0 commit comments

Comments
 (0)