diff options
author | Andrei Vagin <avagin@google.com> | 2019-01-29 17:14:26 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-01-29 17:15:56 -0800 |
commit | dd577f5410a90d31a927b7b0fd6c4bb32b34b9f9 (patch) | |
tree | bdf421c5737f428c40bba5ee7aecbce7b6173d3a /runsc/boot/controller.go | |
parent | ff1c3bb0b577a4ea55a64de39415a8d31142b741 (diff) |
runsc: reap a sandbox process only in sandbox.Wait()
PiperOrigin-RevId: 231504064
Change-Id: I585b769aef04a3ad7e7936027958910a6eed9c8d
Diffstat (limited to 'runsc/boot/controller.go')
-rw-r--r-- | runsc/boot/controller.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/boot/controller.go b/runsc/boot/controller.go index 989f49388..23d476f7f 100644 --- a/runsc/boot/controller.go +++ b/runsc/boot/controller.go @@ -235,7 +235,7 @@ func (cm *containerManager) Start(args *StartArgs, _ *struct{}) error { err := cm.l.startContainer(cm.l.k, args.Spec, args.Conf, args.CID, args.FilePayload.Files) if err != nil { - log.Debugf("containerManager.Start failed %q: %+v", args.CID, args) + log.Debugf("containerManager.Start failed %q: %+v: %v", args.CID, args, err) return err } log.Debugf("Container %q started", args.CID) |