diff --git a/src/web/login.rs b/src/web/login.rs index 6c6f4b6..88b36e5 100644 --- a/src/web/login.rs +++ b/src/web/login.rs @@ -46,7 +46,7 @@ pub struct PasswordHashInflightLimiter { } impl PasswordHashInflightLimiter { - pub async fn new(limit: usize) -> Self { + pub fn new(limit: usize) -> Self { Self { overall: Semaphore::new(limit), per_source_ip: Default::default(),