summaryrefslogtreecommitdiffhomepage
path: root/runsc/cmd/pause.go
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/cmd/pause.go')
-rw-r--r--runsc/cmd/pause.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/cmd/pause.go b/runsc/cmd/pause.go
index fe7d4e257..15ef7b577 100644
--- a/runsc/cmd/pause.go
+++ b/runsc/cmd/pause.go
@@ -55,7 +55,7 @@ func (*Pause) Execute(_ context.Context, f *flag.FlagSet, args ...interface{}) s
id := f.Arg(0)
conf := args[0].(*config.Config)
- cont, err := container.LoadAndCheck(conf.RootDir, id)
+ cont, err := container.Load(conf.RootDir, container.FullID{ContainerID: id}, container.LoadOpts{})
if err != nil {
Fatalf("loading container: %v", err)
}