1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 12:10:55 +00:00

fix panic: sync: negative WaitGroup counter

This commit is contained in:
huwenbo 2017-06-13 15:34:57 +08:00
parent 55e6c15073
commit 3d9286f089

View File

@ -36,4 +36,4 @@ func (c graceConn) Close() (err error) {
c.closed = true c.closed = true
c.m.Unlock() c.m.Unlock()
return c.Conn.Close() return c.Conn.Close()
} }