diff options
Diffstat (limited to 'pkg/shim/runsc/runsc.go')
-rw-r--r-- | pkg/shim/runsc/runsc.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/shim/runsc/runsc.go b/pkg/shim/runsc/runsc.go index e1d616d6f..3c4cbf223 100644 --- a/pkg/shim/runsc/runsc.go +++ b/pkg/shim/runsc/runsc.go @@ -169,14 +169,14 @@ func (r *Runsc) Create(context context.Context, id, bundle string, opts *CreateO func (r *Runsc) Pause(context context.Context, id string) error { if _, err := cmdOutput(r.command(context, "pause", id), true); err != nil { - return fmt.Errorf("unable to pause: %s", err) + return fmt.Errorf("unable to pause: %w", err) } return nil } func (r *Runsc) Resume(context context.Context, id string) error { - if _, err := cmdOutput(r.command(context, "pause", id), true); err != nil { - return fmt.Errorf("unable to resume: %s", err) + if _, err := cmdOutput(r.command(context, "resume", id), true); err != nil { + return fmt.Errorf("unable to resume: %w", err) } return nil } |