mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Merge pull request #2817 from gaurav1086:runner_fix_goroutine_leak
PiperOrigin-RevId: 313816987
This commit is contained in:
@@ -204,7 +204,7 @@ func runRunsc(tc gtest.TestCase, spec *specs.Spec) error {
|
||||
return
|
||||
}
|
||||
log.Warningf("%s: Got signal: %v", name, s)
|
||||
done := make(chan bool)
|
||||
done := make(chan bool, 1)
|
||||
dArgs := append([]string{}, args...)
|
||||
dArgs = append(dArgs, "-alsologtostderr=true", "debug", "--stacks", id)
|
||||
go func(dArgs []string) {
|
||||
|
||||
Reference in New Issue
Block a user