Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The issue here was that we recently added a log.Scope(t).Close(t) call to this test. However, log.Scope(t) creates a goroutine that is only cleaned up when the defer is called. As a result a leaktest inside the given subtests failed. Here, we move the log scope into the subtest as well. Fixes #104639 Release note: None
- Loading branch information