From c60d63e05314f8e06a038a91f22b3e61c9d18596 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Sun, 20 Dec 2020 00:58:51 -0800 Subject: [PATCH] deployment.rs: There is nothing "internal" now about the error after the refactor --- src/deployment.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/deployment.rs b/src/deployment.rs index a48feb4..0d119f1 100644 --- a/src/deployment.rs +++ b/src/deployment.rs @@ -80,9 +80,8 @@ pub async fn deploy(tasks: Vec, max_parallelism: Option, result_list.push((task, true)); }, Err(e) => { - println!("An error occurred while pushing to {}: {:?}", task.name(), e); bar.set_style(failing_spinner_style.clone()); - bar.abandon_with_message("Internal error"); + bar.abandon_with_message("Failed"); let mut result_list = result_list.lock().await; result_list.push((task, false));