-
Notifications
You must be signed in to change notification settings - Fork 512
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
Update Go to 1.14.1 #1543
Update Go to 1.14.1 #1543
Conversation
Expcept in cross build, where we do not have a base image yet. Signed-off-by: Justin Cormack <[email protected]>
Signed-off-by: Justin Cormack <[email protected]>
Signed-off-by: Justin Cormack <[email protected]>
cc @HuKeping this is blocking some of the other PRs. I want to do a release soon with all the updates. |
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!
@@ -393,7 +393,7 @@ func TestNetworkError(t *testing.T) { | |||
Err: errors.New("abc%3Adef%3Aghi"), | |||
} | |||
networkErr := NetworkError{Wrapped: err} | |||
require.Equal(t, http.MethodGet+" https://auth.docker.io: abc:def:ghi", networkErr.Error()) | |||
require.Equal(t, http.MethodGet+" \"https://auth.docker.io\": abc:def:ghi", networkErr.Error()) |
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.
wondering why success in the past?
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.
Yeah these were weird it looks like the error message printing changed in Go 1.14, I mean checking exact error messages is always risky.
Except in cross build, where we do not have a base image yet.
Signed-off-by: Justin Cormack [email protected]