diff --git a/.github/workflows/docker-jepsen.yml b/.github/workflows/docker-jepsen.yml index dcc8be44..1985556b 100644 --- a/.github/workflows/docker-jepsen.yml +++ b/.github/workflows/docker-jepsen.yml @@ -1,10 +1,8 @@ name: Jepsen tests on: - push: - branches: [ master ] - pull_request: - branches: [ master ] + schedule: + - cron: '0 0 * * *' env: GO_VERSION: 1.22.4 diff --git a/tests/images/jepsen_main/jepsen/src/jepsen/mysync.clj b/tests/images/jepsen_main/jepsen/src/jepsen/mysync.clj index 335c4c1a..9b3f5dea 100644 --- a/tests/images/jepsen_main/jepsen/src/jepsen/mysync.clj +++ b/tests/images/jepsen_main/jepsen/src/jepsen/mysync.clj @@ -91,7 +91,7 @@ (invoke! [this test op] (try - (timeout 10000 (assoc op :type :info, :error "timeout") + (timeout 5000 (assoc op :type :info, :error "timeout") (with-conn [c conn] (case (:f op) :read (cond (= (count (j/query c ["show slave status for channel ''"])) 0)