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 2, 2014
1 parent 7864400 commit cae00a6
Showing 1 changed file with 1 addition and 0 deletions.
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

0 comments on commit cae00a6

Please sign in to comment.