try dropping BatchSize by order of magnitude

per https://stackoverflow.com/a/38917034/2343739

ref #343
This commit is contained in:
Collin M. Barrett 2018-08-16 07:16:38 -05:00
parent c484811a95
commit f3a4fcea6d

View file

@ -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 = 1000;
private const int BatchSize = 100;
private readonly FilterListsDbContext dbContext;
private readonly EmailService emailService;
private readonly FilterListViewUrlDto list;