Fix password hash in-flight limiter runtime bug due to improper Extension registration

This commit is contained in:
Olivier 'reivilibre' 2024-01-21 23:05:31 +00:00
parent 1996b5d688
commit 10c1fb522b

View File

@ -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(),