1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 06:57:43 +02:00

chore: address clippy lints

This commit is contained in:
Rob Ede
2025-05-09 20:21:02 +01:00
parent ad73cdc823
commit 7eea3d3657
10 changed files with 21 additions and 32 deletions

View File

@ -179,9 +179,8 @@ where
.acquire_owned()
.await
.map_err(|_| {
ConnectError::Io(io::Error::new(
io::ErrorKind::Other,
"failed to acquire semaphore on client connection pool",
ConnectError::Io(io::Error::other(
"Failed to acquire semaphore on client connection pool",
))
})?;