mirror of
https://github.com/go-micro/go-micro.git
synced 2025-06-18 22:17:44 +02:00
Fix stream eos error (#2716)
* [fix] etcd config source prefix issue (#2389) * http transport data race issue (#2436) * [fix] #2431 http transport data race issue * [feature] Ability to close connection while receiving. Ability to send messages while receiving. Icreased r channel limit to 100 to more fluently communication. Do not dropp sent request if r channel is full. * [fix] Do not send error when stream send eos header, just close the connection * [fix] Do not overwrite the error in http client --------- Co-authored-by: Johnson C <chengqiaosheng@gmail.com>
This commit is contained in:
@ -205,7 +205,9 @@ func (s *rpcServer) ServeConn(sock transport.Socket) {
|
||||
// If we don't have a socket and its a stream
|
||||
// Check if its a last stream EOS error
|
||||
if !ok && stream && msg.Header[headers.Error] == errLastStreamResponse.Error() {
|
||||
closeConn = true
|
||||
pool.Release(psock)
|
||||
|
||||
continue
|
||||
}
|
||||
|
||||
@ -512,7 +514,11 @@ func (s *rpcServer) Deregister() error {
|
||||
logger.Logf(log.InfoLevel, "Unsubscribing %s from topic: %s", node.Id, sub.Topic())
|
||||
|
||||
if err := sub.Unsubscribe(); err != nil {
|
||||
logger.Logf(log.ErrorLevel, "Failed to unsubscribe subscriber nr. %d from topic %s: %v", i+1, sub.Topic(), err)
|
||||
logger.Logf(log.ErrorLevel,
|
||||
"Failed to unsubscribe subscriber nr. %d from topic %s: %v",
|
||||
i+1,
|
||||
sub.Topic(),
|
||||
err)
|
||||
}
|
||||
}
|
||||
|
||||
@ -759,7 +765,11 @@ Loop:
|
||||
|
||||
rerr := s.opts.RegisterCheck(s.opts.Context)
|
||||
if rerr != nil && registered {
|
||||
logger.Logf(log.ErrorLevel, "Server %s-%s register check error: %s, deregister it", config.Name, config.Id, rerr)
|
||||
logger.Logf(log.ErrorLevel,
|
||||
"Server %s-%s register check error: %s, deregister it",
|
||||
config.Name,
|
||||
config.Id,
|
||||
rerr)
|
||||
// deregister self in case of error
|
||||
if err := s.Deregister(); err != nil {
|
||||
logger.Logf(log.ErrorLevel, "Server %s-%s deregister error: %s", config.Name, config.Id, err)
|
||||
@ -809,7 +819,11 @@ Loop:
|
||||
s.setOptsAddr(addr)
|
||||
}
|
||||
|
||||
func (s *rpcServer) serveReq(ctx context.Context, msg transport.Message, req *rpcRequest, resp *rpcResponse, rcodec codec.Codec) {
|
||||
func (s *rpcServer) serveReq(ctx context.Context,
|
||||
msg transport.Message,
|
||||
req *rpcRequest,
|
||||
resp *rpcResponse,
|
||||
rcodec codec.Codec) {
|
||||
logger := s.opts.Logger
|
||||
router := s.getRouter()
|
||||
|
||||
|
Reference in New Issue
Block a user