1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-29 17:41:15 +03:00

Bound connection pool background dials to configured dial timeout (#3089)

This commit is contained in:
LINKIWI
2025-03-24 06:45:43 -07:00
committed by GitHub
parent 694a7101d4
commit 9762559c75
4 changed files with 18 additions and 2 deletions

View File

@ -531,6 +531,7 @@ func newConnPool(
PoolFIFO: opt.PoolFIFO,
PoolSize: opt.PoolSize,
PoolTimeout: opt.PoolTimeout,
DialTimeout: opt.DialTimeout,
MinIdleConns: opt.MinIdleConns,
MaxIdleConns: opt.MaxIdleConns,
MaxActiveConns: opt.MaxActiveConns,