chore: Run pre-commit and clippy to fix inherited CI errs

This commit is contained in:
nexy7574
2026-02-21 15:20:40 +00:00
committed by timedout
parent dd70094719
commit 9016cd11a6
+3 -1
View File
@@ -37,7 +37,9 @@ fn build(args: crate::Args<'_>) -> Result<Arc<Self>> {
},
servername_txnid_response_cache: Arc::new(SyncRwLock::new(HashMap::new())),
servername_txnid_active: Arc::new(SyncRwLock::new(HashMap::new())),
max_active_txns: args.depend::<crate::config::Service>("config").max_concurrent_inbound_transactions
max_active_txns: args
.depend::<crate::config::Service>("config")
.max_concurrent_inbound_transactions,
}))
}