From ca233208e2f22725c3ebdd68b08dffced25a7f70 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Thu, 27 Mar 2025 14:10:11 +0100 Subject: [PATCH] feat: don't stop on error --- crates/drift/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/drift/src/lib.rs b/crates/drift/src/lib.rs index 8b247fd..7b12e9d 100644 --- a/crates/drift/src/lib.rs +++ b/crates/drift/src/lib.rs @@ -53,8 +53,7 @@ where tracing::debug!("running job"); if let Err(e) = drifter.execute(child_token).await { - tracing::error!("drift job failed with error: {}, stopping routine", e); - cancellation_token.cancel(); + tracing::error!("drift job failed with error: {}", e); continue }