Correct out-of-date comment.

This commit is contained in:
Elizabeth Murray
2025-05-09 16:29:57 -07:00
parent be8ed81532
commit 1e83398cdd

View File

@@ -121,7 +121,7 @@ impl ConnectionPool {
tokio::spawn(async move {
loop {
sweeper_pool.sweep_idle_connections().await;
sleep(Duration::from_secs(5)).await; // Run every 60 seconds
sleep(Duration::from_secs(5)).await; // Run every 5 seconds
}
});