Просмотр исходного кода

Merge pull request #6131 from emqx/reenable-rlog-fvt-tests

test(rlog): reenable RLOG FVT tests
Thales Macedo Garitezi 4 лет назад
Родитель
Сommit
a5c8b95dd8

+ 4 - 0
.ci/docker-compose-file/docker-compose-emqx-cluster-rlog.override.yaml

@@ -12,6 +12,7 @@ services:
   emqx1:
     <<: *default-emqx
     container_name: node1.emqx.io
+    restart: on-failure
     environment:
       - "EMQX_HOST=node1.emqx.io"
       - "EMQX_CLUSTER__DB_BACKEND=rlog"
@@ -23,6 +24,9 @@ services:
   emqx2:
     <<: *default-emqx
     container_name: node2.emqx.io
+    depends_on:
+      - emqx1
+    restart: on-failure
     environment:
       - "EMQX_HOST=node2.emqx.io"
       - "EMQX_CLUSTER__DB_BACKEND=rlog"

+ 1 - 2
.github/workflows/run_fvt_tests.yaml

@@ -73,8 +73,7 @@ jobs:
           - 24.1.1-emqx-1
         cluster_db_backend:
           - "mnesia"
-          # FIXME: temporarily disabled: too flaky at the moment
-          # - "rlog"
+          - "rlog"
 
     steps:
     - uses: actions/download-artifact@v2