mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
Merge pull request #2839 from withchao/v3.8-js-sdk-only
fix: ws write io timeout
This commit is contained in:
commit
df03c76b85
@ -438,6 +438,9 @@ func (c *Client) handlerTextMessage(b []byte) error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if err := c.conn.SetWriteDeadline(writeWait); err != nil {
|
||||
return err
|
||||
}
|
||||
return c.conn.WriteMessage(MessageText, msgData)
|
||||
default:
|
||||
return fmt.Errorf("not support message type %s", msg.Type)
|
||||
|
Loading…
x
Reference in New Issue
Block a user