Skip to content

Commit

Permalink
Merge pull request #1435 from DuendeSoftware/anders/RemoveExpiredSess…
Browse files Browse the repository at this point in the history
…ionsVirtual6.3

Make ServerSideSessionStore.GetAndRemoveExpiredSessionsAsync virtual
  • Loading branch information
brockallen committed Oct 19, 2023
2 parents a4dc28e + 75a5a4c commit 8a64003
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public virtual async Task DeleteSessionsAsync(SessionFilter filter, Cancellation


/// <inheritdoc/>
public async Task<IReadOnlyCollection<ServerSideSession>> GetAndRemoveExpiredSessionsAsync(int count, CancellationToken cancellationToken = default)
public virtual async Task<IReadOnlyCollection<ServerSideSession>> GetAndRemoveExpiredSessionsAsync(int count, CancellationToken cancellationToken = default)
{
using var activity = Tracing.StoreActivitySource.StartActivity("ServerSideSessionStore.GetAndRemoveExpiredSessions");

Expand Down

0 comments on commit 8a64003

Please sign in to comment.