mirror of
https://github.com/floor-licker/polyfill-rs.git
synced 2026-08-22 08:58:12 +00:00
fix: resolve all remaining clippy warnings in examples and benchmarks including unused imports, variables, empty println statements, and enum naming conventions
This commit is contained in:
+1
-1
@@ -13,7 +13,7 @@ pub async fn prewarm_connections(client: &Client, base_url: &str) -> Result<(),
|
||||
|
||||
for endpoint in endpoints {
|
||||
let _ = client
|
||||
.get(&format!("{}{}", base_url, endpoint))
|
||||
.get(format!("{}{}", base_url, endpoint))
|
||||
.timeout(Duration::from_millis(1000))
|
||||
.send()
|
||||
.await;
|
||||
|
||||
Reference in New Issue
Block a user