Skip to content

Commit

Permalink
Merge pull request #2854 from Random-Liu/kill-in-stopped-state
Browse files Browse the repository at this point in the history
Allow Kill in stopped state
  • Loading branch information
estesp committed Dec 4, 2018
2 parents 2175efc + 7949998 commit 6937c5a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions runtime/v1/linux/proc/init_state.go
Expand Up @@ -24,7 +24,6 @@ import (
"syscall"

"github.com/containerd/console"
"github.com/containerd/containerd/errdefs"
"github.com/containerd/containerd/runtime/proc"
"github.com/containerd/fifo"
runc "github.com/containerd/go-runc"
Expand Down Expand Up @@ -407,7 +406,7 @@ func (s *stoppedState) Delete(ctx context.Context) error {
}

func (s *stoppedState) Kill(ctx context.Context, sig uint32, all bool) error {
return errdefs.ToGRPCf(errdefs.ErrNotFound, "process %s not found", s.p.id)
return s.p.kill(ctx, sig, all)
}

func (s *stoppedState) SetExited(status int) {
Expand Down

0 comments on commit 6937c5a

Please sign in to comment.