Context
Multiple reviewers flagged in PR #1735 (round-1 review) that TestBoundedLoad_OldestLoadedSet hangs in CI / local test runs. It pre-dates the #1724 work (the PR's tests deliberately skip it via -skip TestBoundedLoad).
Proposal
Reproduce locally, identify the hang condition, fix or quarantine with t.Skip + a code comment pointing back to this issue.
Notes
Hang is reliable enough that the local test run for PR #1735 had to add -skip to terminate. Likely a goroutine/channel deadlock or a waitgroup that never closes.
Context
Multiple reviewers flagged in PR #1735 (round-1 review) that
TestBoundedLoad_OldestLoadedSethangs in CI / local test runs. It pre-dates the #1724 work (the PR's tests deliberately skip it via-skip TestBoundedLoad).Proposal
Reproduce locally, identify the hang condition, fix or quarantine with
t.Skip+ a code comment pointing back to this issue.Notes
Hang is reliable enough that the local test run for PR #1735 had to add
-skipto terminate. Likely a goroutine/channel deadlock or a waitgroup that never closes.