From 27ca5e441bae865605b6e8d272e3950a6b2c070d Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 1 Sep 2018 12:20:47 -0500 Subject: [PATCH] timeout to 48 hours to support huge lists --- src/FilterLists.Agent/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Agent/Program.cs b/src/FilterLists.Agent/Program.cs index 407a8e2c1..1aaee4ab6 100644 --- a/src/FilterLists.Agent/Program.cs +++ b/src/FilterLists.Agent/Program.cs @@ -16,7 +16,7 @@ public static class Program private static ServiceProvider serviceProvider; private static SnapshotService snapshotService; private static Logger logger; - private static readonly TimeSpan Timeout = TimeSpan.FromHours(12); + private static readonly TimeSpan Timeout = TimeSpan.FromHours(48); public static async Task Main() {