From 79b73f094c39d06ad858aaca5973ada92c4fda84 Mon Sep 17 00:00:00 2001 From: DQ Date: Mon, 27 Jul 2020 12:06:24 +0800 Subject: [PATCH] Enhance: Prolong the timeout of chartclient In some perspectives to reduce the too many charts performence issue Signed-off-by: DQ --- src/chartserver/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chartserver/client.go b/src/chartserver/client.go index 1ab153570b..b71cdeb6ef 100644 --- a/src/chartserver/client.go +++ b/src/chartserver/client.go @@ -14,7 +14,7 @@ import ( ) const ( - clientTimeout = 10 * time.Second + clientTimeout = 30 * time.Second maxIdleConnections = 10 idleConnectionTimeout = 30 * time.Second )