1
Fork 0

Remove ErrWriterDead, replace with ErrClientDead.

This commit is contained in:
Juliusz Chroboczek 2020-09-12 19:52:36 +02:00
parent abb8b70a0d
commit 71022f4b58
1 changed files with 3 additions and 4 deletions

View File

@ -1177,8 +1177,7 @@ func clientWriter(conn *websocket.Conn, ch <-chan interface{}, done chan<- struc
}
}
var ErrWriterDead = errors.New("client writer died")
var ErrClientDead = errors.New("client dead")
var ErrClientDead = errors.New("client is dead")
func (c *webClient) action(m interface{}) error {
select {
@ -1194,7 +1193,7 @@ func (c *webClient) write(m clientMessage) error {
case c.writeCh <- m:
return nil
case <-c.writerDone:
return ErrWriterDead
return ErrClientDead
}
}
@ -1203,7 +1202,7 @@ func (c *webClient) close(data []byte) error {
case c.writeCh <- closeMessage{data}:
return nil
case <-c.writerDone:
return ErrWriterDead
return ErrClientDead
}
}