1
0
mirror of https://github.com/redis/go-redis.git synced 2025-04-17 20:17:02 +03:00
This commit is contained in:
wanglei6 2020-04-30 17:46:50 +08:00
parent 4d5f8a5df3
commit 39881392de

View File

@ -93,6 +93,7 @@ func NewConnPool(opt *Options) *ConnPool {
idleConns: make([]*Conn, 0, opt.PoolSize),
closedCh: make(chan struct{}),
}
p.connsMu.Lock()
p.checkMinIdleConns()
p.connsMu.Unlock()