From 6e88c00366cbfccbc6ab3e01ced1fb2220883956 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Fri, 21 Jan 2022 12:00:20 -0500 Subject: [PATCH] increase timeout ticker size --- internal/consensus/common_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/consensus/common_test.go b/internal/consensus/common_test.go index 3400754d8..b7b5e2a8c 100644 --- a/internal/consensus/common_test.go +++ b/internal/consensus/common_test.go @@ -893,7 +893,7 @@ func makeGenesisState(ctx context.Context, t *testing.T, cfg *config.Config, arg func newMockTickerFunc(onlyOnce bool) func() TimeoutTicker { return func() TimeoutTicker { return &mockTicker{ - c: make(chan timeoutInfo, 10), + c: make(chan timeoutInfo, 100), onlyOnce: onlyOnce, } }