From e8972e437ee42dd4ab9d50653c0bd34b777654cd Mon Sep 17 00:00:00 2001 From: Matthew Jaffee Date: Wed, 8 Dec 2021 17:12:50 -0600 Subject: [PATCH] smaller clusters to take less memory... test-race getting oom killed --- executor_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/executor_test.go b/executor_test.go index a06b312b0..432499511 100644 --- a/executor_test.go +++ b/executor_test.go @@ -7016,7 +7016,7 @@ func TestMissingKeyRegression(t *testing.T) { // (single and multi-node clusters, different endpoints for the // queries (HTTP, GRPC, Postgres), etc.). func TestVariousQueries(t *testing.T) { - for _, clusterSize := range []int{1, 3, 7} { + for _, clusterSize := range []int{1, 3, 5} { clusterSize := clusterSize t.Run(fmt.Sprintf("%d-node", clusterSize), func(t *testing.T) { c := test.MustRunCluster(t, clusterSize) @@ -7045,7 +7045,7 @@ func backupTest(t *testing.T, c *test.Cluster, index string) { backupDir := backupCluster(t, c, index) - cnew := test.MustRunCluster(t, 3) // this way we test 1->3 3->3 7->3 + cnew := test.MustRunCluster(t, 3) // this way we test 1->3 3->3 5->3 defer cnew.Close() restoreCluster(t, backupDir, cnew)