Skip to content

Commit ee35ad3

Browse files
authored
fix: remove hold WaitGroup in TestConcurrentFetch (coder#19617)
Fixes: coder/internal#950 Pretty sure the intention of the `hold` wait group is to try to get the two goroutines that the test starts running at the same time. But, that should be the case for two goroutines started anyway. The use of `hold` doesn't actually guarantee concurrent execution of `Acquire`, just that both goroutines get as far as `Done()` --- the go scheduler could run them serially without incident. So I've chosen to just remove the use of `hold` to simplify. But, for posterity, the data race was due to incrementing by 1 in the loop along with the goroutine that calls Done. You could increment by 1 and then back down to 0 before the second iteration of the loop starts. This then causes a data race with calling `Wait()` in the first goroutine and `Add()` in the second iteration. c.f. https://pkg.go.dev/sync#WaitGroup.Add
1 parent 6606d8b commit ee35ad3

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

coderd/files/cache_test.go

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -100,21 +100,15 @@ func TestConcurrentFetch(t *testing.T) {
100100
ctx := dbauthz.AsFileReader(testutil.Context(t, testutil.WaitShort))
101101

102102
// Expect 2 calls to Acquire before we continue the test
103-
var (
104-
hold sync.WaitGroup
105-
wg sync.WaitGroup
106-
)
103+
var wg sync.WaitGroup
107104

105+
wg.Add(2)
108106
for range 2 {
109-
hold.Add(1)
110107
// TODO: wg.Go in Go 1.25
111-
wg.Add(1)
112108
go func() {
113109
defer wg.Done()
114-
hold.Done()
115-
hold.Wait()
116110
_, err := cache.Acquire(ctx, dbM, fileID)
117-
require.NoError(t, err)
111+
assert.NoError(t, err)
118112
}()
119113
}
120114

0 commit comments

Comments
 (0)