Selaa lähdekoodia

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

gary rong 6 vuotta sitten
vanhempi
commit
e4cb7b80d5
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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)
 }