From 0badea25b7d37a4072531b6e320b3df7f57a51b7 Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Fri, 30 Aug 2019 12:22:45 -0700 Subject: [PATCH] Increase ping wait to 1 minute instead of 10 seconds --- types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.go b/types.go index f1056cd..92263c2 100644 --- a/types.go +++ b/types.go @@ -5,7 +5,7 @@ import ( ) var ( - PingWaitDuration = time.Duration(10 * time.Second) + PingWaitDuration = time.Duration(60 * time.Second) PingWriteInterval = time.Duration(5 * time.Second) MaxRead = 8192 )