diff options
author | Dean Deng <deandeng@google.com> | 2020-10-28 18:16:30 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-10-28 18:23:29 -0700 |
commit | 3b4674ffe0e6ef1b016333ee726293ecf70c4e4e (patch) | |
tree | 5a0147bdaa1b75cf933fc39ff2118fd553d878cb /runsc | |
parent | 906f912b7c9484fd0028224a24055b887d4f84d2 (diff) |
Add logging option to leak checker.
Also refactor the template and CheckedObject interface to make this cleaner.
Updates #1486.
PiperOrigin-RevId: 339577120
Diffstat (limited to 'runsc')
-rw-r--r-- | runsc/boot/loader.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runsc/boot/loader.go b/runsc/boot/loader.go index 8c6ab213d..10f0f452b 100644 --- a/runsc/boot/loader.go +++ b/runsc/boot/loader.go @@ -479,9 +479,7 @@ func (l *Loader) Destroy() { // All sentry-created resources should have been released at this point; // check for reference leaks. - if refsvfs2.LeakCheckEnabled() { - refsvfs2.DoLeakCheck() - } + refsvfs2.DoLeakCheck() // In the success case, stdioFDs and goferFDs will only contain // released/closed FDs that ownership has been passed over to host FDs and |