From a59b2a4d51874cdc561660548d9d44cdc05ab28b Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Fri, 14 Sep 2018 19:45:44 -0500 Subject: [PATCH] skip snaps of 526 for now --- src/FilterLists.Services/Snapshot/SnapshotService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/FilterLists.Services/Snapshot/SnapshotService.cs b/src/FilterLists.Services/Snapshot/SnapshotService.cs index 2a84e280e..6631cccfe 100644 --- a/src/FilterLists.Services/Snapshot/SnapshotService.cs +++ b/src/FilterLists.Services/Snapshot/SnapshotService.cs @@ -54,6 +54,7 @@ FROM snapshots_rules private async Task> GetListsToCapture(int batchSize) => await DbContext .FilterLists + .Where(l => l.Id != 526) //~2 million rules, too big for SnapshotService currently .OrderBy(l => l.Snapshots.Any()) .ThenByDescending(ifLastSnapFailed) .ThenBy(lastSnapTimestamp)