mirror of https://github.com/databricks/cli.git
Increased chan size for clusters test to pass (#1691)
## Changes Increased chan size for clusters test to pass
This commit is contained in:
parent
7c5b650111
commit
f99335e871
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue