-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Bump go 1.16.6 #3197
Bump go 1.16.6 #3197
Conversation
6e06ceb
to
59d2077
Compare
Interesting; looks like for some reason, the test doesn't pick up the
|
I suspect the problem is that stdlib uses a So if some codepath has checked if a proxy must be used, and at that moment no proxy env-vars were set, then it will no longer be called after that.
There is a |
Hmm.. actually, this commit may be the cause; golang/net@7b1cca2 We set up a |
This is gonna be fun, because we use Lines 21 to 24 in a32cd16
|
59296b8
to
6f75653
Compare
02cb88a
to
94d1e60
Compare
Codecov Report
@@ Coverage Diff @@
## master #3197 +/- ##
=======================================
Coverage 58.58% 58.58%
=======================================
Files 299 299
Lines 21502 21502
=======================================
Hits 12597 12597
Misses 7983 7983
Partials 922 922 |
f9067f9
to
ecd9beb
Compare
5a5e4de
to
a866978
Compare
Update to the above: So, it turned out that the actual code-path that the CLI uses does not (directly)
During initialisation;
So, although there still are some bits to look into, for example, if the client is initialized with a custom scheme, using the |
@silvin-lubecki @StefanScherer PTAL - this is ready for review now 🤗 |
dockerfiles/Dockerfile.e2e
Outdated
@@ -39,6 +39,7 @@ ARG GITCOMMIT | |||
ENV VERSION=${VERSION} | |||
ENV GITCOMMIT=${GITCOMMIT} | |||
ENV DOCKER_BUILDKIT=1 | |||
#ENV GO111MODULE=off |
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.
question: Should we keep this commented line?
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.
Arf, nope, my mistake. Let me fix
a866978
to
ab12131
Compare
Keeping the dockerfiles/Dockerfile.cross image at 1.13, as we don't have more current versions of that image. However, I don't think it's still used, so we should remove it. Signed-off-by: Sebastiaan van Stijn <[email protected]>
ab12131
to
a477a72
Compare
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
Keeping the dockerfiles/Dockerfile.cross image at 1.13, as we don't
have more current versions of that image. However, I don't think it's
still used, so we should remove it.