diff options
author | Valery Piashchynski <[email protected]> | 2021-02-03 23:59:38 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-02-03 23:59:38 +0300 |
commit | 46206991fb841d13f4554b3269236c31d08bc78c (patch) | |
tree | 8dddddac6b1820e273cb07489554950c035de9c9 /pkg/transport/pipe/pipe_factory_test.go | |
parent | f48602882cf3f7ab8f7bbecde0fc63ad3e0f29a6 (diff) |
Increase channel cap for the tests
Diffstat (limited to 'pkg/transport/pipe/pipe_factory_test.go')
-rwxr-xr-x | pkg/transport/pipe/pipe_factory_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/transport/pipe/pipe_factory_test.go b/pkg/transport/pipe/pipe_factory_test.go index 6045dd91..3efeb59c 100755 --- a/pkg/transport/pipe/pipe_factory_test.go +++ b/pkg/transport/pipe/pipe_factory_test.go @@ -118,7 +118,7 @@ func Test_Pipe_Failboot(t *testing.T) { cmd := exec.Command("php", "../../../tests/failboot.php") ctx := context.Background() - finish := make(chan struct{}, 1) + finish := make(chan struct{}, 10) listener := func(event interface{}) { if ev, ok := event.(events.WorkerEvent); ok { if ev.Event == events.EventWorkerStderr { |