-
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: SIGPIPE is raised when using net.DialTimeout and timeout is reached #18770
Comments
We need to see a complete example that demonstrates the problem. See https://golang.org/pkg/os/signal for how the Go runtime handles |
Also, please try Go 1.8. We're no longer fixing bugs (only security issues) in Go 1.7. |
this is probably dup of #17393 isn't it @eliasnaur ? |
@dcu Thank you for the reference, looks like the same though slightly different use-case. I agree with comment in referenced issue that in theory Go should not be raising SIGPIPE at all (instead of ignoring it). SIGPIPE is meant for environment where it is not possible to handle error upon write/read to/from closed socket, which is the case for low level languages. Go already provides necessary tools for managing socket errors. I guess can close as a dup, though sad to see that (according to referenced issue) the fix for this won't be in 1.8. |
It looks like a dup of #17393. I'll try (again) to fix it for Go 1.9. |
What version of Go are you using (
go version
)?1.7.4 darwin
What operating system and processor architecture are you using (
go env
)?What did you do?
Application that connects to remote server using net.DialTimeout. The application part that connects remotely is written in Go, the application GUI is written in C++ (Qt5). And Go part is statically linked to GUI.
The pseudo-code that causes the issue:
What did you expect to see?
Since error is handled and written to STDERR as a log message I expect to see message and app keep on running.
What did you see instead?
The app exits with code 141 (SIGPIPE). If in C++ part I specify to ignore SIGPIPE (such as
signal(SIGPIPE, SIG_IGN);
) then I can see log output. Without that the application exists silently**(!)**, which I believe should not be the case, if we raise SIGPIPE, then we at least should see stack trace leading us to the line where EPIPE happened....Comment
I think preferred solution would be not to raise SIGPIPE at all. Since I can get err value on timeout and can handle it appropriately. FYI,
net
package has no error type for timeout error. so the only way to ensure that the error is due to timeout is to lookup for substring in error message...The text was updated successfully, but these errors were encountered: