From 0321e8752cb75549c46851f949d2ed05d8a710b4 Mon Sep 17 00:00:00 2001 From: Sax Authors Date: Sat, 25 May 2024 11:28:08 -0700 Subject: [PATCH] Increase the connection purgeTime to a day. PiperOrigin-RevId: 637245418 Change-Id: Iaaad412c1afcd8e6e6f3a211e4280847232e5336 --- saxml/client/go/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saxml/client/go/connection.go b/saxml/client/go/connection.go index f72f9707..ce12edf5 100644 --- a/saxml/client/go/connection.go +++ b/saxml/client/go/connection.go @@ -32,7 +32,7 @@ import ( const ( sleepTime = 5 * time.Second fastPurgeTime = 10 * time.Second - purgeTime = 60 * time.Minute + purgeTime = 24 * time.Hour dialTimeout = 2 * time.Second )