This commit is contained in:
laodaming 2023-08-15 17:40:27 +08:00
parent 12b1905f11
commit 6502f241ab

View File

@ -284,7 +284,9 @@ func (w *wsConnectItem) sendToOutChan(data []byte) {
case <-w.closeChan:
return
case w.outChan <- data:
logx.Info("notify send render result to out chan")
return
case <-time.After(time.Second * 3): //阻塞超过3秒丢弃
return
}
}