summaryrefslogtreecommitdiffhomepage
path: root/pkg/shim/proc/exec.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/shim/proc/exec.go')
-rw-r--r--pkg/shim/proc/exec.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/shim/proc/exec.go b/pkg/shim/proc/exec.go
index e0f2ae6fa..da2e21598 100644
--- a/pkg/shim/proc/exec.go
+++ b/pkg/shim/proc/exec.go
@@ -113,7 +113,7 @@ func (e *execProcess) Delete(ctx context.Context) error {
return e.execState.Delete(ctx)
}
-func (e *execProcess) delete() error {
+func (e *execProcess) delete() {
e.wg.Wait()
if e.io != nil {
for _, c := range e.closers {
@@ -121,7 +121,6 @@ func (e *execProcess) delete() error {
}
e.io.Close()
}
- return nil
}
func (e *execProcess) Resize(ws console.WinSize) error {