-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[gh-6980] Client: clean up old allocs before running new ones using the exec
task driver.
#20500
Changes from 22 commits
1c49e81
08ad0fa
52a96b2
34c633e
bba68b0
bdfef99
4d58b78
25fd974
a10f608
ae45696
b1c347c
48406ce
3ba9e85
bdd0948
2c901fe
2f61a97
a1c635e
312dcfc
3f1a238
ec9dade
2f50dbb
d6017b4
9d6b62e
bf0a7f5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:bug | ||
client: terminate old exec task processes before starting new ones, to avoid accidentally leaving running processes in case of an error | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,7 +172,7 @@ require ( | |
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect | ||
github.com/cheggaaa/pb/v3 v3.0.5 // indirect | ||
github.com/cilium/ebpf v0.9.1 // indirect | ||
github.com/cilium/ebpf v0.11.0 // indirect | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why a go.mod change? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tested a few things before, this is probably a left over of one of those attempts. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, we'll want to back this change out before merging. |
||
github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible // indirect | ||
github.com/circonus-labs/circonusllhist v0.1.3 // indirect | ||
github.com/containerd/console v1.0.3 // indirect | ||
|
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.
SIGKILL
isn't one of the signals we've masked above, and we can't catch it anyways. So this block really is only translatingSIGTERM
toSIGINT
, right?