From 83921b8c2db29a35d420e601fa15559cb435c770 Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Mon, 17 Sep 2018 12:14:17 -0400 Subject: [PATCH] bump timeout until lbryio/lbry#1377 is resolved --- cmd/reflector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/reflector.go b/cmd/reflector.go index 5cc572c..d497c63 100644 --- a/cmd/reflector.go +++ b/cmd/reflector.go @@ -37,7 +37,7 @@ func reflectorCmd(cmd *cobra.Command, args []string) { combo := store.NewDBBackedS3Store(s3, db) reflectorServer := reflector.NewServer(combo) - reflectorServer.Timeout = 30 * time.Second + reflectorServer.Timeout = 3 * time.Minute if globalConfig.SlackHookURL != "" { reflectorServer.StatLogger = log.StandardLogger() reflectorServer.StatReportFrequency = 1 * time.Hour