From 6c3e7849e76a211e21749c635af610415121b2d3 Mon Sep 17 00:00:00 2001 From: Rick Carback <rick@privategrity.com> Date: Wed, 31 Jul 2019 22:12:04 +0000 Subject: [PATCH] Update hard time out to 45s --- cmd/root.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 9418aa09a..6bc25bd1e 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -446,8 +446,8 @@ var rootCmd = &cobra.Command{ timer = time.NewTimer(dummyPeriod) } } else { - // Wait up to 2 minutes to receive a message - for end, timeout := false, time.After(120*time.Second); !end; { + // Wait up to 45s to receive a message + for end, timeout := false, time.After(45*time.Second); !end; { if text.MessagesReceived > 0 { end = true } -- GitLab