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)