Skip to content

Commit

Permalink
Fix the arguments order (CancellationToken at the end)
Browse files Browse the repository at this point in the history
  • Loading branch information
panosru committed Jul 22, 2023
1 parent 99b1b5a commit 0465ffb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Identity/Application/Behaviours/PerformanceBehaviour.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public PerformanceBehaviour(ICurrentUserService currentUserService, IIdentitySer

public new async Task<TResponse> Handle(
TRequest request,
CancellationToken cancellationToken,
RequestHandlerDelegate<TResponse> next)
RequestHandlerDelegate<TResponse> next,
CancellationToken cancellationToken)
{
Timer.Start();
var response = await next().ConfigureAwait(false);
Expand Down

0 comments on commit 0465ffb

Please sign in to comment.