-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Server error on client close. #1062
Comments
Yes, and this seems only to happen under Windows. If I cross compile it to Linux it works without error. |
Probably related to https://go-review.googlesource.com/c/39490/. |
@linjohn also happens on Linux when I establish a connection and then call |
This is not a bug but a log spam: there's a goroutine on the server that reads on the connection synchronously, when the connection breaks(con.Close()), this gorutine logs an error out. Now the connection breaking might be completely valid (not an error, like in this case), the goroutine logs it out anyway. |
When running the helloworld example, the client executes successfully and without error.
The server gives an error :
This only happens when the client shuts down.
This might be fixed by issue #460
The text was updated successfully, but these errors were encountered: