From 358bcf4828d0ebe2c75f8093c6ce81840313acb1 Mon Sep 17 00:00:00 2001 From: Spencer Brown <spencer@privategrity.com> Date: Tue, 2 Apr 2019 15:55:58 -0700 Subject: [PATCH] Increase running time for client --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 5029d528e..830f4de35 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -344,7 +344,7 @@ var rootCmd = &cobra.Command{ if destinationUserId == 31 { timer = time.NewTimer(20 * time.Second) } else { - timer = time.NewTimer(5 * time.Second) + timer = time.NewTimer(10 * time.Second) } <-timer.C } -- GitLab