1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 18:37:41 +02:00

chore: address clippy lints

This commit is contained in:
Rob Ede
2024-06-09 23:08:20 +01:00
parent 8ebb12b75a
commit 433c926503
2 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ impl Limiter {
let key = key.into();
let expires = self.period.as_secs();
let mut connection = self.client.get_tokio_connection().await?;
let mut connection = self.client.get_multiplexed_tokio_connection().await?;
// The seed of this approach is outlined Atul R in a blog post about rate limiting using
// NodeJS and Redis. For more details, see https://blog.atulr.com/rate-limiter