Increased chan size for clusters test to pass (#1691)

## Changes
Increased chan size for clusters test to pass
This commit is contained in:
Andrew Nester 2024-08-19 12:00:21 +02:00 committed by GitHub
parent 7c5b650111
commit f99335e871
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ type cobraTestRunner struct {
} }
func consumeLines(ctx context.Context, wg *sync.WaitGroup, r io.Reader) <-chan string { 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) wg.Add(1)
go func() { go func() {
defer close(ch) defer close(ch)