summaryrefslogtreecommitdiffhomepage
path: root/pkg/v2
diff options
context:
space:
mode:
authorLantao Liu <taotaotheripper@gmail.com>2019-03-08 17:53:36 -0800
committerGitHub <noreply@github.com>2019-03-08 17:53:36 -0800
commitb7015c1a46fbea47ad8e7985583b30bd918ddc4b (patch)
tree4d1568f811e5772aa90120d96a0b53cdf85c42c4 /pkg/v2
parent326bc9f3bac1b89414950772ac0cb87619b847d9 (diff)
Put the gvisor user log into sandbox log directory. (#17)
Signed-off-by: Lantao Liu <lantaol@google.com>
Diffstat (limited to 'pkg/v2')
-rw-r--r--pkg/v2/service.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/v2/service.go b/pkg/v2/service.go
index 0a5054e22..912798e23 100644
--- a/pkg/v2/service.go
+++ b/pkg/v2/service.go
@@ -696,7 +696,7 @@ func newInit(ctx context.Context, path, workDir, namespace string, platform rpro
if err != nil {
return nil, errors.Wrap(err, "read oci spec")
}
- userLog := runsc.FormatLogPath(r.ID, options.RunscConfig)
+ runsc.FormatLogPath(r.ID, options.RunscConfig)
rootfs := filepath.Join(path, "rootfs")
runtime := proc.NewRunsc(options.Root, path, namespace, options.BinaryName, options.RunscConfig)
p := proc.New(r.ID, runtime, rproc.Stdio{
@@ -712,7 +712,7 @@ func newInit(ctx context.Context, path, workDir, namespace string, platform rpro
p.IoUID = int(options.IoUid)
p.IoGID = int(options.IoGid)
p.Sandbox = utils.IsSandbox(spec)
- p.UserLog = userLog
+ p.UserLog = utils.UserLogPath(spec)
p.Monitor = shim.Default
return p, nil
}