retry failed snapshots first

...but still no more than once per day
ref #369
This commit is contained in:
Collin M. Barrett 2018-08-22 18:02:41 -05:00
parent 578d671ad2
commit 815ef345fb

View file

@ -37,6 +37,10 @@ await DbContext
.OrderByDescending(d => d)
.First() < yesterday))
.OrderBy(l => l.Snapshots.Any())
.ThenBy(l => l.Snapshots
.OrderByDescending(s => s.CreatedDateUtc)
.FirstOrDefault()
.WasSuccessful)
.ThenBy(l => l.Snapshots
.Select(s => s.CreatedDateUtc)
.OrderByDescending(d => d)