From 5a51ac2112c06a19befeb2cf2a1272bae191706f Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Thu, 16 Aug 2018 19:59:05 -0500 Subject: [PATCH] bump batch size back up to 100 ref #343 --- src/FilterLists.Services/Snapshot/SnapshotDe.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Services/Snapshot/SnapshotDe.cs b/src/FilterLists.Services/Snapshot/SnapshotDe.cs index 25ecf20ff..65742a5b1 100644 --- a/src/FilterLists.Services/Snapshot/SnapshotDe.cs +++ b/src/FilterLists.Services/Snapshot/SnapshotDe.cs @@ -17,7 +17,7 @@ public class SnapshotDe private const string UserAgentString = @"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36"; - private const int BatchSize = 5; + private const int BatchSize = 100; private readonly FilterListsDbContext dbContext; private readonly EmailService emailService; private readonly FilterListViewUrlDto list;