diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-10-19 22:36:25 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-10-19 22:36:25 +0000 |
commit | 7f5dd4f20148bbd6400046567f05bdf014e10d5c (patch) | |
tree | b15c16beb1b694884024528de6247f235fb925e7 /runsc/container | |
parent | 8aa6ac86b7ab3ca89ee81203a10a9fd7ef639b55 (diff) | |
parent | 4b4d12d5bb9c4902380fa999b5f49d3ed7029938 (diff) |
Merge release-20201005.0-101-g4b4d12d5b (automated)
Diffstat (limited to 'runsc/container')
-rw-r--r-- | runsc/container/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/container/container.go b/runsc/container/container.go index 63478ba8c..63f64ce6e 100644 --- a/runsc/container/container.go +++ b/runsc/container/container.go @@ -985,7 +985,7 @@ func (c *Container) createGoferProcess(spec *specs.Spec, conf *config.Config, bu // Start the gofer in the given namespace. log.Debugf("Starting gofer: %s %v", binPath, args) if err := specutils.StartInNS(cmd, nss); err != nil { - return nil, nil, fmt.Errorf("Gofer: %v", err) + return nil, nil, fmt.Errorf("gofer: %v", err) } log.Infof("Gofer started, PID: %d", cmd.Process.Pid) c.GoferPid = cmd.Process.Pid |