-
Notifications
You must be signed in to change notification settings - Fork 17.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
runtime: broken pipe where use http client in ServeHTTP #12931
Comments
How are you running this program? Are you using go run ? On Wed, 14 Oct 2015, 23:46 Xiang Liang notifications@github.com wrote:
|
I go build it and then run. Does not use go run. |
Thank you for confirming. On Thu, Oct 15, 2015 at 12:05 AM, Xiang Liang notifications@github.com
|
Following code will help you reproduce this problem more easily:
|
It's correct for the signal loop to report getting SIGPIPE, because the process is getting SIGPIPEs (writing to closed connections). That's a fact of Unix, with nothing we can do about that. If the process can be made to exit, it means that something wrote 10 times in a row to a specific closed network connection, ignoring the error. That causes the runtime to turn off its SIGPIPE handler and raise SIGPIPE itself. If an HTTP server can be forced to do that, either the SIGPIPE heuristic is buggy or the HTTP code is. FWIW, #11845 wants more SIGPIPE; this issue wants less SIGPIPE. |
I don't necessarily want more SIGPIPE in #11845, although that was my initial suggestion. What I really want is to get away from the magic number 10. I think we should either ignore SIGPIPE or raise SIGPIPE immediately. Since different programs have different needs, I think we may need to have a function that sets the desired behaviour. For an HTTP server, indeed for any program that calls net.Listen, I think the correct default to ignore SIGPIPE. For a command line program that is not a server, I think the correct default is to die on SIGPIPE. |
Yes, you are write. For other signals, we can ignore them. But I do not know why we need magic number 10 for SIGPIPE. |
Closing as duplicate of #11845. That work will fix this problem. |
I use go version go1.5.1 darwin/amd64.
I write a simple http server like:
Then, If I curl http://127.0.0.1:8888/hello and then press Ctrl-C very quickly, the server will receive "broken pipe" signal. And if server receive many broken pipe signal, the process will exit.
The text was updated successfully, but these errors were encountered: