Seems like we should actually check the reference count.

pull/212/head
Robert B Gordon 11 years ago
parent 3b12ff3377
commit 470d0f1e58

@ -288,7 +288,7 @@ func (p *ConnPool) clearConn(conn *Conn) {
p.Unlock()
// Close down immediately if idle
if refCount := atomic.LoadInt32(&conn.shouldClose); refCount == 0 {
if refCount := atomic.LoadInt32(&conn.refCount); refCount == 0 {
conn.Close()
}
}

Loading…
Cancel
Save