Skip to content

Commit 66c20f2

Browse files
committed
Update runc to 96ec2177ae841256168fcf76954f7177af
This fixes a regression in runc that didn't allow signals being sent to paused containers. Signed-off-by: Michael Crosby <[email protected]>
1 parent 8ccfe2a commit 66c20f2

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

runtime/v1/linux/proc/utils.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ func checkKillError(err error) error {
9393
if err == nil {
9494
return nil
9595
}
96-
if strings.Contains(err.Error(), "os: process already finished") || err == unix.ESRCH {
96+
if strings.Contains(err.Error(), "os: process already finished") ||
97+
strings.Contains(err.Error(), "container not running") ||
98+
err == unix.ESRCH {
9799
return errors.Wrapf(errdefs.ErrNotFound, "process already finished")
98100
}
99101
return errors.Wrapf(err, "unknown error after kill")

vendor.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ github.com/gogo/protobuf v1.0.0
2020
github.com/gogo/googleapis 08a7655d27152912db7aaf4f983275eaf8d128ef
2121
github.com/golang/protobuf v1.1.0
2222
github.com/opencontainers/runtime-spec eba862dc2470385a233c7507392675cbeadf7353 # v1.0.1-45-geba862d
23-
github.com/opencontainers/runc v1.0.0-rc6
23+
github.com/opencontainers/runc 96ec2177ae841256168fcf76954f7177af9446eb
2424
github.com/sirupsen/logrus v1.0.3
2525
github.com/urfave/cli 7bc6a0acffa589f415f88aca16cc1de5ffd66f9c
2626
golang.org/x/net b3756b4b77d7b13260a0a2ec658753cf48922eac

vendor/github.com/opencontainers/runc/libcontainer/configs/intelrdt.go

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)