Skip to content

Commit

Permalink
fixup! Ignore crypto errors when creating the auth0 client
Browse files Browse the repository at this point in the history
  • Loading branch information
MaeIsBad committed Aug 22, 2024
1 parent 2c76dc2 commit f8881fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth0/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async fn start(
if token.needs_refresh(&config) {
tracing::info!("Refreshing JWT and JWKS");

match Token::fetch(&client, &config).await {
match fetch_and_update_token(client_ref, cache_ref, config_ref).await {
Ok(token) => {
let token = fetch_and_update_token(client_ref, cache_ref, config_ref).await?;
write(&token_lock, token);
Expand Down

0 comments on commit f8881fa

Please sign in to comment.