Skip to content

Commit

Permalink
Fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmarbach committed Aug 8, 2020
1 parent 9d5ecdf commit 4727c75
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -26,13 +26,13 @@ public async Task<HttpResponseMessage> GetFailedMessageRetriesCount()
{
using (var session = store.OpenAsyncSession())
{
var query = await session.Query<FailedMessageRetry>().Statistics(out var stats).ToListAsync().ConfigureAwait(false);
await session.Query<FailedMessageRetry>().Statistics(out var stats).ToListAsync().ConfigureAwait(false);

return Request.CreateResponse(HttpStatusCode.OK, new FailedMessageRetriesCountReponse
{
Count = stats.TotalResults
})
.WithEtag(stats));
.WithEtag(stats);
}
}

Expand Down

0 comments on commit 4727c75

Please sign in to comment.