-
Notifications
You must be signed in to change notification settings - Fork 348
Conversation
f841d58
to
63abcbb
Compare
63abcbb
to
bfbff99
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see comment..
also .. need to update vendor I think
integration/test_utils.go
Outdated
@@ -295,6 +298,15 @@ func KillProcess(name string) error { | |||
return nil | |||
} | |||
|
|||
// KillPid kills the process by pid. kill is used. | |||
func KillPid(pid int) error { | |||
output, err := exec.Command("kill", "-9", strconv.Itoa(pid)).CombinedOutput() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think you wanted to send a SIGTERM here (-15) not a SIGKILL? or maybe the KillProcess is wrong as I see it's using default which I believe is SIGTERM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use kill directly, which uses SIGTERM by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:-) good
Signed-off-by: Lantao Liu <[email protected]>
8fa56d0
to
79ae65e
Compare
Signed-off-by: Lantao Liu <[email protected]>
Done. |
Signed-off-by: Lantao Liu <[email protected]>
79ae65e
to
84775d2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/LGTM
Cherrypick #949 release 1.2
Cherrypick #949 release 1.0
Fixes #948.
Based on containerd/go-cni#31.
We should cherrypick this PR into all supported branches.