chore(oidc): remove a few unnecessary wrappers, now that OidcCtx is in an Arc'd data structure

This commit is contained in:
Benjamin Bouvier
2023-09-14 15:21:19 +02:00
parent b9b042ec4a
commit 0cb5f666ae

View File

@@ -233,7 +233,7 @@ pub(crate) struct OidcCtx {
///
/// Note: only required because we're using the crypto store that might not
/// be present before reloading a session.
deferred_cross_process_lock_init: Arc<Mutex<Option<String>>>,
deferred_cross_process_lock_init: Mutex<Option<String>>,
}
impl OidcCtx {