From efa37a41d522516e2b9820e6ef7bf76a0c41e343 Mon Sep 17 00:00:00 2001 From: Brian Dwyer <2973273+bdwyertech@users.noreply.github.com> Date: Fri, 15 Oct 2021 10:32:52 -0400 Subject: [PATCH] Increase WS Keepalive Interval --- src/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/config.go b/src/config/config.go index ccf2168c..fa461562 100644 --- a/src/config/config.go +++ b/src/config/config.go @@ -35,7 +35,7 @@ const ( DataChannelRetryInitialDelayMillis = 100 DataChannelRetryMaxIntervalMillis = 5000 RetryAttempt = 5 - PingTimeInterval = 5 * time.Minute + PingTimeInterval = 15 * time.Second // Plugin names ShellPluginName = "Standard_Stream"