Skip to content

Commit

Permalink
fix: default priority
Browse files Browse the repository at this point in the history
  • Loading branch information
ailtonguitar authored and brmagadutra committed Apr 22, 2024
1 parent 7cdb1a9 commit 810350e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public AdaptativeConcurrencyLimiter(
/// </summary>
public Task ExecuteAsync(Func<Task> function, CancellationToken cancellationToken = default)
{
return this.ExecuteAsync(0, function, cancellationToken);
return this.ExecuteAsync(Priority.Normal, function, cancellationToken);
}

/// <summary>
Expand Down

0 comments on commit 810350e

Please sign in to comment.