feat: don't stop on error
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kjuulh 2025-03-27 14:10:11 +01:00
parent 3c9d15779d
commit ca233208e2

View File

@ -53,8 +53,7 @@ where
tracing::debug!("running job"); tracing::debug!("running job");
if let Err(e) = drifter.execute(child_token).await { if let Err(e) = drifter.execute(child_token).await {
tracing::error!("drift job failed with error: {}, stopping routine", e); tracing::error!("drift job failed with error: {}", e);
cancellation_token.cancel();
continue continue
} }