-
Notifications
You must be signed in to change notification settings - Fork 731
enhancement restart policy #999
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
Conversation
7c75527 to
1db71b3
Compare
8b42a2f to
9a2e964
Compare
cbe291d to
e4ae78f
Compare
9aada81 to
f402e05
Compare
|
Thanks, the code looks good but go.mod seems to have unneeded changes accidentally (?) |
Signed-off-by: Ye Sijun <[email protected]>
| github.com/containerd/continuity v0.3.0 | ||
| github.com/containerd/go-cni v1.1.5 | ||
| github.com/containerd/imgcrypt v1.1.4 | ||
| github.com/containerd/imgcrypt v1.1.5-0.20220421044638-8ba028dca028 |
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.
Why do we need updating imgcrypt and typeurl?
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'm not sure, I just replaced containerd and go mod tidy.
| // Temporary fork for avoiding importing patent-protected code: https://github.com/hashicorp/golang-lru/issues/73 | ||
| replace github.com/hashicorp/golang-lru => github.com/ktock/golang-lru v0.5.5-0.20211029085301-ec551be6f75c | ||
|
|
||
| replace github.com/containerd/containerd => github.com/containerd/containerd v1.6.1-0.20220428184543-bb8b134a1797 |
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.
Why do we need replace() ? Can we just specify this revision in require() ?
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 tried it but go get fails :(
go get github.com/containerd/containerd@main
go: github.com/containerd/containerd@main (v1.6.1-0.20220504173539-885468815ef7) requires github.com/containerd/[email protected], not github.com/containerd/containerd@main (v1.6.1-0.20220504173539-885468815ef7)
Signed-off-by: Ye Sijun [email protected]
Fixes: #945