Skip to content

Commit

Permalink
Merge branch 'hotfix-4.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
John Simons committed Oct 2, 2014
2 parents b94baeb + 2e6f40a commit 7d3a27d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ private static IRavenQueryable<TimeoutData> GetChunkQuery(IDocumentSession sessi
.OrderBy(t => t.Time)
.Where(
t =>
t.OwningTimeoutManager == null ||
t.OwningTimeoutManager == String.Empty ||
t.OwningTimeoutManager == Configure.EndpointName);
}
Expand Down Expand Up @@ -67,7 +68,7 @@ public List<Tuple<string, DateTime>> GetNextChunk(DateTime startSlice, out DateT
// Allow for occasionally cleaning up old timeouts for edge cases where timeouts have been
// added after startSlice have been set to a later timout and we might have missed them
// because of stale indexes.
if (lastCleanupTime.Add(TriggerCleanupEvery) > now || lastCleanupTime == DateTime.MinValue)
if (lastCleanupTime.Add(TriggerCleanupEvery) < now || lastCleanupTime == DateTime.MinValue)
{
results.AddRange(GetCleanupChunk(startSlice));
}
Expand Down

0 comments on commit 7d3a27d

Please sign in to comment.