From 3c64a33b2f73da0bf69553fdaaf1a1ee3de25ed2 Mon Sep 17 00:00:00 2001 From: Denis Kirillov Date: Tue, 19 Jul 2022 17:06:32 +0300 Subject: [PATCH] [#172] Change pool defaults params Signed-off-by: Denis Kirillov --- settings.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.go b/settings.go index 8c6a80c..1b0c8b9 100644 --- a/settings.go +++ b/settings.go @@ -16,9 +16,9 @@ import ( ) const ( - defaultRebalanceTimer = 15 * time.Second + defaultRebalanceTimer = 60 * time.Second defaultRequestTimeout = 15 * time.Second - defaultConnectTimeout = 30 * time.Second + defaultConnectTimeout = 10 * time.Second cfgListenAddress = "listen_address" cfgTLSCertificate = "tls_certificate"