diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-01-08 00:50:54 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-01-08 00:50:54 +0000 |
| commit | f75e1c59aacf5ce668fd327e4e3d827511661c2a (patch) | |
| tree | 867926c7503e7c587e86c67896a9e7347600447b /src/purgatory/sync/loop.rs | |
| parent | 3f14f998d64b5fa15bdddd7570b4f72874eb9f29 (diff) | |
chore: cargo fmt
Diffstat (limited to 'src/purgatory/sync/loop.rs')
| -rw-r--r-- | src/purgatory/sync/loop.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/purgatory/sync/loop.rs b/src/purgatory/sync/loop.rs index ebca766..92e0594 100644 --- a/src/purgatory/sync/loop.rs +++ b/src/purgatory/sync/loop.rs | |||
| @@ -62,7 +62,10 @@ impl Purgatory { | |||
| 62 | ctx: Arc<dyn SyncContext>, | 62 | ctx: Arc<dyn SyncContext>, |
| 63 | throttle_manager: Arc<ThrottleManager>, | 63 | throttle_manager: Arc<ThrottleManager>, |
| 64 | ) -> JoinHandle<()> { | 64 | ) -> JoinHandle<()> { |
| 65 | info!("Starting purgatory sync loop (interval: {:?})", SYNC_LOOP_INTERVAL); | 65 | info!( |
| 66 | "Starting purgatory sync loop (interval: {:?})", | ||
| 67 | SYNC_LOOP_INTERVAL | ||
| 68 | ); | ||
| 66 | 69 | ||
| 67 | tokio::spawn(async move { | 70 | tokio::spawn(async move { |
| 68 | let mut interval = tokio::time::interval(SYNC_LOOP_INTERVAL); | 71 | let mut interval = tokio::time::interval(SYNC_LOOP_INTERVAL); |