diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 8b870dc..5e9e2d0 100644 --- a/src/main.rs +++ b/src/main.rs | |||
| @@ -146,7 +146,9 @@ async fn main() -> Result<()> { | |||
| 146 | throttle_manager.set_context(sync_ctx.clone()); | 146 | throttle_manager.set_context(sync_ctx.clone()); |
| 147 | 147 | ||
| 148 | // Start the sync loop | 148 | // Start the sync loop |
| 149 | let _sync_loop_handle = purgatory.clone().start_sync_loop(sync_ctx, throttle_manager); | 149 | let _sync_loop_handle = purgatory |
| 150 | .clone() | ||
| 151 | .start_sync_loop(sync_ctx, throttle_manager); | ||
| 150 | info!("Purgatory sync loop started (1s interval)"); | 152 | info!("Purgatory sync loop started (1s interval)"); |
| 151 | 153 | ||
| 152 | // Setup shutdown handler for purgatory cleanup | 154 | // Setup shutdown handler for purgatory cleanup |