Skip to content

Commit

Permalink
Added null check for OwningTimeoutManager
Browse files Browse the repository at this point in the history
  • Loading branch information
John Simons committed Oct 1, 2014
1 parent f0c9cc4 commit 4f651d1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,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

0 comments on commit 4f651d1

Please sign in to comment.