From f99335e87145f1b18d9b8bdd6e376fb365be2c13 Mon Sep 17 00:00:00 2001 From: Andrew Nester Date: Mon, 19 Aug 2024 12:00:21 +0200 Subject: [PATCH] Increased chan size for clusters test to pass (#1691) ## Changes Increased chan size for clusters test to pass --- internal/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/helpers.go b/internal/helpers.go index 26903018..419fa419 100644 --- a/internal/helpers.go +++ b/internal/helpers.go @@ -87,7 +87,7 @@ type cobraTestRunner struct { } func consumeLines(ctx context.Context, wg *sync.WaitGroup, r io.Reader) <-chan string { - ch := make(chan string, 10000) + ch := make(chan string, 30000) wg.Add(1) go func() { defer close(ch)