Skip to content

Commit

Permalink
fixup! Remove jwks_client dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
MaeIsBad committed Aug 22, 2024
1 parent 2333d7e commit 960fd71
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/auth0/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,7 @@ impl Auth0 {

let token_lock: Arc<RwLock<Token>> = Arc::new(RwLock::new(token));

start(
token_lock.clone(),
client_ref.clone(),
cache.clone(),
config,
)
.await;
start(token_lock.clone(), client_ref.clone(), cache.clone(), config).await;

Ok(Self { token_lock })
}
Expand Down

0 comments on commit 960fd71

Please sign in to comment.