Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug: fix flaky test TestQueuedRetry_RequeuingEnabled (#8989)
fixes a flaky test Fixing a bug - TestQueuedRetry_RequeuingEnabled has been failing occasionally. Upon investigation, `be.send` calls the underlying `observabilityConsumerSender.send` which calls `wg.Done()`, so we need to add `wg.Add(1)` before that Fixes #6624 **Testing:** Ran the same test multiple times before/after change: `go test -race -run TestQueuedRetry_RequeuingEnabled -count 1000`
- Loading branch information