diff options
author | Travis DePrato <travisdeprato@gmail.com> | 2021-01-13 13:04:50 -0800 |
---|---|---|
committer | Travis DePrato <travisdeprato@gmail.com> | 2021-01-13 13:06:15 -0800 |
commit | a88d6caf533e11d3171232e415f106475e5b3f08 (patch) | |
tree | 71a926e8c77b83bf1ba1f7d71276ec292e435828 /pkg/shim/runsc | |
parent | 37855aff121a7cf9deae0405910a62518e806a9e (diff) |
Fix code review issues
Diffstat (limited to 'pkg/shim/runsc')
-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 } |