Skip to content

Commit 852587c

Browse files
committed
[events/exchange_test] Fix deadlock in TestExchangeFilters
Signed-off-by: Gaurav Singh <[email protected]> Remove sync Signed-off-by: Gaurav Singh <[email protected]>
1 parent 4f979f0 commit 852587c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

events/exchange/exchange_test.go

-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ package exchange
1919
import (
2020
"context"
2121
"reflect"
22-
"sync"
2322
"testing"
2423
"time"
2524

@@ -221,11 +220,8 @@ func TestExchangeFilters(t *testing.T) {
221220
}
222221

223222
t.Log("publish")
224-
var wg sync.WaitGroup
225-
wg.Add(1)
226223
errChan := make(chan error)
227224
go func() {
228-
defer wg.Done()
229225
defer close(errChan)
230226
for _, es := range testEventSets {
231227
for _, e := range es.events {
@@ -240,7 +236,6 @@ func TestExchangeFilters(t *testing.T) {
240236
}()
241237

242238
t.Log("waiting")
243-
wg.Wait()
244239
if err := <-errChan; err != nil {
245240
t.Fatal(err)
246241
}

0 commit comments

Comments
 (0)