diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-08-03 20:56:06 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-08-03 20:56:06 +0000 |
commit | fe330b0e44a6efa302be2e4474be2a730236d450 (patch) | |
tree | 259516ede059722c0c6d2f1ed3fca21dac67a5cf /runsc/sandbox | |
parent | cb321bd5722e40d668d051586d3914f9e9bb0dba (diff) | |
parent | 8caf231cb14128938a08208a0580e37e20be1fc1 (diff) |
Merge release-20210726.0-30-g8caf231cb (automated)
Diffstat (limited to 'runsc/sandbox')
-rw-r--r-- | runsc/sandbox/sandbox.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runsc/sandbox/sandbox.go b/runsc/sandbox/sandbox.go index 5fb7dc834..822da8c5e 100644 --- a/runsc/sandbox/sandbox.go +++ b/runsc/sandbox/sandbox.go @@ -981,7 +981,7 @@ func (s *Sandbox) Pause(cid string) error { } defer conn.Close() - if err := conn.Call(boot.ContMgrPause, nil, nil); err != nil { + if err := conn.Call(boot.LifecyclePause, nil, nil); err != nil { return fmt.Errorf("pausing container %q: %v", cid, err) } return nil @@ -996,7 +996,7 @@ func (s *Sandbox) Resume(cid string) error { } defer conn.Close() - if err := conn.Call(boot.ContMgrResume, nil, nil); err != nil { + if err := conn.Call(boot.LifecycleResume, nil, nil); err != nil { return fmt.Errorf("resuming container %q: %v", cid, err) } return nil |