Преглед изворни кода

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

gary rong пре 6 година
родитељ
комит
e4cb7b80d5
1 измењених фајлова са 1 додато и 1 уклоњено
  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)
 }