mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-07-30 23:24:44 +08:00
ignore error when counting closed connections
This commit is contained in:
parent
96c1ae8471
commit
9232d3ac68
@ -66,11 +66,8 @@ func (c *Conn) Write(b []byte) (count int, e error) {
|
||||
}
|
||||
|
||||
func (c *Conn) Close() error {
|
||||
err := c.Conn.Close()
|
||||
if err == nil {
|
||||
stats.ConnectionClose()
|
||||
}
|
||||
return err
|
||||
stats.ConnectionClose()
|
||||
return c.Conn.Close()
|
||||
}
|
||||
|
||||
func NewListener(addr string, timeout time.Duration) (net.Listener, error) {
|
||||
|
Loading…
Reference in New Issue
Block a user