drop batch size by 1/10th

This commit is contained in:
Collin M. Barrett 2018-08-26 14:42:13 -05:00
parent bcaece339f
commit 744d27d958

View file

@ -9,7 +9,7 @@ namespace FilterLists.Services.Snapshot
{
public class BatchSizeService : Service
{
private const int DefaultBatchSize = 10000;
private const int DefaultBatchSize = 1000;
private const float PercentMultiplier = 0.05F;
public BatchSizeService(FilterListsDbContext dbContext) : base(dbContext)