chore: remove "this process is still alive" that I forgot to delete

This commit is contained in:
2026-06-12 23:45:30 -04:00
parent fa0093d582
commit 50fc35883d

View File

@@ -385,17 +385,6 @@ async fn main() -> Result<(), MainError> {
} }
}); });
tokio::spawn(async {
let duration = Duration::from_secs(120);
let mut interval = tokio::time::interval(duration);
loop {
interval.tick().await;
tracing::debug!("this process is still alive");
}
});
loop { loop {
tokio::spawn({ tokio::spawn({
let vcs_sender = vcs_sender.clone(); let vcs_sender = vcs_sender.clone();