Skip to content

Commit 5179301

Browse files
committed
remove useless parameter from newTask
Signed-off-by: yanxuean <[email protected]>
1 parent acced5d commit 5179301

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

runtime/v1/linux/runtime.go

+2-10
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,7 @@ func (r *Runtime) Create(ctx context.Context, id string, opts runtime.CreateOpts
248248
if err != nil {
249249
return nil, errdefs.FromGRPC(err)
250250
}
251-
t, err := newTask(id, namespace, int(cr.Pid), s, r.events,
252-
proc.NewRunc(ropts.RuntimeRoot, sopts.Bundle, namespace, rt, ropts.CriuPath, ropts.SystemdCgroup), r.tasks, bundle)
251+
t, err := newTask(id, namespace, int(cr.Pid), s, r.events, r.tasks, bundle)
253252
if err != nil {
254253
return nil, err
255254
}
@@ -341,15 +340,8 @@ func (r *Runtime) loadTasks(ctx context.Context, ns string) ([]*Task, error) {
341340
}
342341
continue
343342
}
344-
ropts, err := r.getRuncOptions(ctx, id)
345-
if err != nil {
346-
log.G(ctx).WithError(err).WithField("id", id).
347-
Error("get runtime options")
348-
continue
349-
}
350343

351-
t, err := newTask(id, ns, pid, s, r.events,
352-
proc.NewRunc(ropts.RuntimeRoot, bundle.path, ns, ropts.Runtime, ropts.CriuPath, ropts.SystemdCgroup), r.tasks, bundle)
344+
t, err := newTask(id, ns, pid, s, r.events, r.tasks, bundle)
353345
if err != nil {
354346
log.G(ctx).WithError(err).Error("loading task type")
355347
continue

runtime/v1/linux/task.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ import (
3131
"github.com/containerd/containerd/log"
3232
"github.com/containerd/containerd/runtime"
3333
"github.com/containerd/containerd/runtime/v1/shim/client"
34-
shim "github.com/containerd/containerd/runtime/v1/shim/v1"
35-
runc "github.com/containerd/go-runc"
34+
"github.com/containerd/containerd/runtime/v1/shim/v1"
3635
"github.com/containerd/ttrpc"
3736
"github.com/containerd/typeurl"
3837
"github.com/gogo/protobuf/types"
@@ -52,7 +51,7 @@ type Task struct {
5251
bundle *bundle
5352
}
5453

55-
func newTask(id, namespace string, pid int, shim *client.Client, events *exchange.Exchange, runtime *runc.Runc, list *runtime.TaskList, bundle *bundle) (*Task, error) {
54+
func newTask(id, namespace string, pid int, shim *client.Client, events *exchange.Exchange, list *runtime.TaskList, bundle *bundle) (*Task, error) {
5655
var (
5756
err error
5857
cg cgroups.Cgroup

0 commit comments

Comments
 (0)