cargo fmt

This commit is contained in:
Arpad Müller
2025-04-02 16:03:01 +02:00
parent 48d712af1b
commit 0a5b9506ae
2 changed files with 10 additions and 3 deletions

View File

@@ -35,7 +35,10 @@ impl SafekeeperReconcilers {
service: &Arc<Service>,
reqs: Vec<ScheduleRequest>,
) {
tracing::info!("Scheduling {} pending safekeeper ops loaded from db", reqs.len());
tracing::info!(
"Scheduling {} pending safekeeper ops loaded from db",
reqs.len()
);
for req in reqs {
self.schedule_request(service, req);
}