-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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
net/http: Client.Do https request wrapped in goroutine hangs #25099
Labels
Comments
Changed url to |
Duplicate of #25054 |
It's due to the |
@FiloSottile okay, I confirm this, thank you. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
What version of Go are you using (
go version
)?go version go1.10.1 linux/amd64
What operating system and processor architecture are you using (
go env
)?Linux amk 4.16.3-1-ARCH #1 SMP PREEMPT Thu Apr 19 09:17:56 UTC 2018 x86_64 GNU/Linux
What did you do?
I made and run this script via
go run test.go
:What did you expect to see?
All requests to be performed.
In standard output something like this:
OR panic (some messages via stderr)
What did you see instead?
None requests were performed, no output except first line.
In standard output:
In debugger (vscode + delve) it hangs on line 171 of
client.go
:Here
c
is defined andc.Jar
isnil
.Additional
I tested it against
http
without ssl and it works fine.The text was updated successfully, but these errors were encountered: