From 5b67da5cf551b328d4fa2fa7b5d50075ea8d423a Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 4 Oct 2022 14:44:56 +0200 Subject: [PATCH] spurrious printlns --- backend/src/worker.rs | 1 - backend/src/worker_flow.rs | 6 ------ 2 files changed, 7 deletions(-) diff --git a/backend/src/worker.rs b/backend/src/worker.rs index ce60612c7d..b1ee50bf81 100644 --- a/backend/src/worker.rs +++ b/backend/src/worker.rs @@ -362,7 +362,6 @@ async fn handle_queued_job( envs, ) .await; - println!("{logs:#?} {execution:?}"); match execution { Ok(r) => { diff --git a/backend/src/worker_flow.rs b/backend/src/worker_flow.rs index 689b7f1d36..9d8a5e258e 100644 --- a/backend/src/worker_flow.rs +++ b/backend/src/worker_flow.rs @@ -255,12 +255,6 @@ pub async fn update_flow_status_after_job_completion( false if has_failure_module(flow, &mut tx).await? => true, false => false, }; - println!( - "{success:#?} {:#?} {:#?} {should_continue_flow} {module_index:#?}", - &flow_job.parse_raw_flow_retry(module_index), - &flow_job.parse_flow_status_retry().unwrap_or_default() - ); - tx.commit().await?; let done = if !should_continue_flow {