1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-24 10:07:04 +02:00

client close: rpc: unable to write error response

when client close notice: "rpc: unable to write error response..."
This commit is contained in:
kuangzhiqiang 2019-02-03 19:12:13 +08:00 committed by GitHub
parent 89014160fc
commit 6be205fd40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -157,6 +157,7 @@ func (s *rpcServer) ServeConn(sock transport.Socket) {
// TODO: handle error better
if err := handler(ctx, request, response); err != nil {
if err != lastStreamResponseError {
// write an error response
err = rcodec.Write(&codec.Message{
Header: msg.Header,
@ -167,6 +168,7 @@ func (s *rpcServer) ServeConn(sock transport.Socket) {
if err != nil {
log.Logf("rpc: unable to write error response: %v", err)
}
}
s.wg.Done()
return
}