mirror of
https://github.com/livekit/livekit.git
synced 2026-08-04 17:29:26 +00:00
fixed mismatched codec type in pion, increase message chan buffer to avoid overflow during message handling
This commit is contained in:
@@ -15,7 +15,7 @@ type MessageChannel struct {
|
||||
func NewMessageChannel() *MessageChannel {
|
||||
return &MessageChannel{
|
||||
// allow some buffer to avoid blocked writes
|
||||
msgChan: make(chan proto.Message, 10),
|
||||
msgChan: make(chan proto.Message, 200),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user