diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-10-27 20:43:02 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-10-27 20:43:02 -0700 |
commit | 22ac9b07237f79e55b8af64cce02b4753e0c7cab (patch) | |
tree | 1aa4b07d47257ff3576fd9b9367da642f0fd3491 /runsc/cmd | |
parent | 93d2d37a93640328f01add7d4866bc107ff6a74e (diff) | |
parent | 3b8193e762c1cc37df42104f5abeb6fdc7b70c01 (diff) |
Merge pull request #4587 from lnsp:stacktrace
PiperOrigin-RevId: 339385609
Diffstat (limited to 'runsc/cmd')
-rw-r--r-- | runsc/cmd/boot.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runsc/cmd/boot.go b/runsc/cmd/boot.go index cd419e1aa..2c92e3067 100644 --- a/runsc/cmd/boot.go +++ b/runsc/cmd/boot.go @@ -131,11 +131,11 @@ func (b *Boot) Execute(_ context.Context, f *flag.FlagSet, args ...interface{}) return subcommands.ExitUsageError } - // Ensure that if there is a panic, all goroutine stacks are printed. - debug.SetTraceback("system") - conf := args[0].(*config.Config) + // Set traceback level + debug.SetTraceback(conf.Traceback) + if b.attached { // Ensure this process is killed after parent process terminates when // attached mode is enabled. In the unfortunate event that the parent |