Ver código fonte

rpc: cancel root context after all requests are served (#19430)

gary rong 6 anos atrás
pai
commit
e4cb7b80d5
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      rpc/handler.go

+ 1 - 1
rpc/handler.go

@@ -151,8 +151,8 @@ func (h *handler) handleMsg(msg *jsonrpcMessage) {
 // call goroutines to shut down.
 func (h *handler) close(err error, inflightReq *requestOp) {
 	h.cancelAllRequests(err, inflightReq)
-	h.cancelRoot()
 	h.callWG.Wait()
+	h.cancelRoot()
 	h.cancelServerSubscriptions(err)
 }