-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix ExecSync support for runtimes other than runC #310
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
Changes from all commits
9a4a109
468746a
d60d0ac
4c7583b
ce54c1e
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 |
|---|---|---|
|
|
@@ -387,7 +387,6 @@ function teardown() { | |
| run ocic ctr execsync --id "$ctr_id" doesnotexist | ||
| echo "$output" | ||
| [ "$status" -ne 0 ] | ||
| [[ "$output" =~ "executable file not found in" ]] | ||
|
|
||
|
Member
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. Where has this gone?
Author
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. This string was returned by runC itself. Other runtimes may not decide to return the same string. |
||
| cleanup_ctrs | ||
| cleanup_pods | ||
|
|
||
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.
We were doing this conversion up in the go code so need to remove the conversion from https://github.com/kubernetes-incubator/cri-o/blob/master/oci/oci.go#L338
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.
Done, thanks for spotting that one.