Skip to content

Commit 8fd48d3

Browse files
committed
Fix YugabyteDB CI by adding ysql_yb_enable_listen_notify flag so that LISTEN and NOTIFY statements are enabled
1 parent 3024850 commit 8fd48d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ jobs:
646646
- name: Set up Yugabyte
647647
run: |
648648
docker pull yugabytedb/yugabyte:latest
649-
docker run -d --name yugabyte -p7000:7000 -p9000:9000 -p5433:5433 -p9042:9042 yugabytedb/yugabyte:latest bin/yugabyted start --daemon=false
649+
docker run -d --name yugabyte -p7000:7000 -p9000:9000 -p5433:5433 -p9042:9042 yugabytedb/yugabyte:latest bin/yugabyted start --daemon=false --tserver_flags="ysql_yb_enable_listen_notify=true" --master_flags="ysql_yb_enable_listen_notify=true"
650650
until pg_isready -h localhost -p 5433; do sleep 1; done
651651
- name: Run Tests
652652
run: |

0 commit comments

Comments
 (0)