Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Treven LeBlanc committed Feb 16, 2023
1 parent 31b9e28 commit 2a3c71b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Duende.AccessTokenManagement;
public class ClientCredentialsTokenEndpointService : IClientCredentialsTokenEndpointService
{
private readonly IHttpClientFactory _httpClientFactory;
private readonly IOptionsSnapshot<ClientCredentialsClient> _options;
private readonly IOptionsMonitor<ClientCredentialsClient> _options;
private readonly IClientAssertionService _clientAssertionService;
private readonly ILogger<ClientCredentialsTokenEndpointService> _logger;

Expand All @@ -31,7 +31,7 @@ public class ClientCredentialsTokenEndpointService : IClientCredentialsTokenEndp
/// <param name="options"></param>
public ClientCredentialsTokenEndpointService(
IHttpClientFactory httpClientFactory,
IOptionsSnapshot<ClientCredentialsClient> options,
IOptionsMonitor<ClientCredentialsClient> options,
IClientAssertionService clientAssertionService,
ILogger<ClientCredentialsTokenEndpointService> logger)
{
Expand Down

0 comments on commit 2a3c71b

Please sign in to comment.