fix wshrpc concurrency

This commit is contained in:
sawka 2024-09-06 16:06:50 -07:00
parent b85cfc9d2d
commit 7b866ed3a8

View File

@ -335,7 +335,7 @@ func (w *WshRpc) runServer() {
continue
}
if msg.IsRpcRequest() {
w.handleRequest(&msg)
go w.handleRequest(&msg)
} else {
respCh := w.getResponseCh(msg.ResId)
if respCh == nil {