From 7f5d87b038bd5a1370eed037a49c879214f8679e Mon Sep 17 00:00:00 2001 From: Nedyalko Dyakov Date: Mon, 24 Mar 2025 18:10:47 +0200 Subject: [PATCH] fix: put back option in pool creation --- options.go | 1 + 1 file changed, 1 insertion(+) diff --git a/options.go b/options.go index e98b3247..eb35353d 100644 --- a/options.go +++ b/options.go @@ -582,6 +582,7 @@ func newConnPool( PoolFIFO: opt.PoolFIFO, PoolSize: opt.PoolSize, PoolTimeout: opt.PoolTimeout, + DialTimeout: opt.DialTimeout, MinIdleConns: opt.MinIdleConns, MaxIdleConns: opt.MaxIdleConns, MaxActiveConns: opt.MaxActiveConns,