-
Notifications
You must be signed in to change notification settings - Fork 884
[wip] Bump vishvananda/netlink to 1.0.0 #2118
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
Closed
Closed
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
34e73ac
bump golang.org/x/sys to 01acb38716e021ed1fc03a602bdb5838e1358c5e
thaJeztah 5aab2ce
bump docker/docker to 7270b01e5dd1fca3fd7fed0d6fb9d2769ec5f4ba
thaJeztah 61898ca
Bump vishvananda/netlink to 1.0.0
thaJeztah 311c9a8
Updates for golang/x/sys changes
thaJeztah 1e8ac21
Use "unix" instead of "syscall"
thaJeztah d2f343a
Bump github.com/coreos/go-systemd to v15
thaJeztah cf0bf30
Bump github.com/Microsoft/go-winio to 0.4.6
thaJeztah 04580f0
Bump github.com/Microsoft/hcsshim to 0.6.8
thaJeztah 925cf92
Bump github.com/docker/go-connections to 7beb39f0b969b075d1325fecb092…
thaJeztah 3ddb6d8
Bump image-spec and runtime-spec to 1.0.1
thaJeztah 99f50b9
bump runc to 4fc53a81fb7c994640722ac585fa9ca548971871
thaJeztah e0e898c
Bump opencontainers/selinux to b29023b86e4a69d1b46b7e7b4e2b6fda03f0b9cd
thaJeztah 45af83c
Bump containerd/console to 2748ece16665b45a47f884001d5831ec79703880
thaJeztah cc7c9d9
Bump containerd/continuity to d8fb8589b0e8e85b8c8bbaa8840226d0dfeb7371
thaJeztah File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -70,6 +70,7 @@ import ( | |
| "github.com/docker/libnetwork/netlabel" | ||
| "github.com/docker/libnetwork/osl" | ||
| "github.com/docker/libnetwork/types" | ||
| "github.com/pkg/errors" | ||
| "github.com/sirupsen/logrus" | ||
| ) | ||
|
|
||
|
|
@@ -1255,7 +1256,7 @@ func (c *controller) loadDriver(networkType string) error { | |
| } | ||
|
|
||
| if err != nil { | ||
| if err == plugins.ErrNotFound { | ||
| if errors.Cause(err) == plugins.ErrNotFound { | ||
| return types.NotFoundErrorf(err.Error()) | ||
| } | ||
| return err | ||
|
|
@@ -1274,7 +1275,7 @@ func (c *controller) loadIPAMDriver(name string) error { | |
| } | ||
|
|
||
| if err != nil { | ||
| if err == plugins.ErrNotFound { | ||
| if errors.Cause(err) == plugins.ErrNotFound { | ||
|
Member
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. Similar to the above, but not sure if there's a test case covering this; |
||
| return types.NotFoundErrorf(err.Error()) | ||
| } | ||
| return err | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This fixes:
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.
Wonder if this is an actual issue currently; this was revealed due to docker/docker being bumped here, but likely is an issue in the current version in that repository