Browse Source

fix possible connection counting error

pull/729/head
Chris Lu 6 years ago
parent
commit
06b81c063a
  1. 7
      weed/util/net_timeout.go

7
weed/util/net_timeout.go

@ -66,8 +66,11 @@ func (c *Conn) Write(b []byte) (count int, e error) {
} }
func (c *Conn) Close() error { func (c *Conn) Close() error {
stats.ConnectionClose()
return c.Conn.Close()
err := c.Conn.Close()
if err == nil {
stats.ConnectionClose()
}
return err
} }
func NewListener(addr string, timeout time.Duration) (net.Listener, error) { func NewListener(addr string, timeout time.Duration) (net.Listener, error) {

Loading…
Cancel
Save