dependencies: update to gomega v1.22.1 and ginkgo v2.3.1

This adds support for timeouts and intermediate reports in Eventually and
Consistently.
This commit is contained in:
Patrick Ohly
2022-10-07 17:19:09 +02:00
parent 48608cfe60
commit d1dbf7ae3e
57 changed files with 2043 additions and 937 deletions

View File

@@ -463,6 +463,7 @@ func (e *Experiment) Sample(callback func(idx int), samplingConfig SamplingConfi
minSamplingInterval := samplingConfig.MinSamplingInterval
work := make(chan int)
defer close(work)
if numParallel > 1 {
for worker := 0; worker < numParallel; worker++ {
go func() {