From dce50f91c09f81efe78776269c0ee99355c95b55 Mon Sep 17 00:00:00 2001 From: Tarak Ben Youssef Date: Tue, 12 Sep 2023 13:49:58 -0600 Subject: [PATCH] make start up node time larger to accommodate failing TestClusterSwitchover_MultiCluster --- .github/workflows/ci.yml | 2 -- engine/collection/test/cluster_switchover_test.go | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db68ffe199c..b24de2f44ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,8 +111,6 @@ jobs: cache: true - name: Setup tests (${{ matrix.targets.name }}) run: VERBOSE=1 make -e GO_TEST_PACKAGES="${{ matrix.targets.packages }}" install-tools - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 - name: Run tests (${{ matrix.targets.name }}) uses: nick-fields/retry@v2 with: diff --git a/engine/collection/test/cluster_switchover_test.go b/engine/collection/test/cluster_switchover_test.go index a8f04173099..15a23823ab3 100644 --- a/engine/collection/test/cluster_switchover_test.go +++ b/engine/collection/test/cluster_switchover_test.go @@ -212,7 +212,7 @@ func (tc *ClusterSwitchoverTestCase) StartNodes() { nodes = append(nodes, node) } - unittest.RequireCloseBefore(tc.T(), util.AllReady(nodes...), time.Second, "could not start nodes") + unittest.RequireCloseBefore(tc.T(), util.AllReady(nodes...), 3*time.Second, "could not start nodes") // start continuous delivery for all nodes for _, node := range tc.nodes {