From 7dfca01d8e8bffe0ca09ca58fe7e11f9d34514d2 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 3 Dec 2020 08:17:18 +0100 Subject: Cleanup imports This patch cleans the imports, removes the unused ones and moves imports, wherever possible, to the outer scope. Signed-off-by: Matthias Beyer --- src/orchestrator/orchestrator.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/orchestrator') diff --git a/src/orchestrator/orchestrator.rs b/src/orchestrator/orchestrator.rs index 65bc6c9..9ad81b2 100644 --- a/src/orchestrator/orchestrator.rs +++ b/src/orchestrator/orchestrator.rs @@ -8,11 +8,8 @@ use anyhow::Error; use anyhow::Result; use anyhow::anyhow; use diesel::PgConnection; -use indicatif::ProgressBar; use tokio::sync::RwLock; -use tokio::sync::mpsc::UnboundedReceiver; use typed_builder::TypedBuilder; -use uuid::Uuid; use crate::db::models::Submit; use crate::endpoint::ContainerError; @@ -22,7 +19,6 @@ use crate::filestore::MergedStores; use crate::filestore::ReleaseStore; use crate::filestore::StagingStore; use crate::job::JobSet; -use crate::log::LogItem; use crate::source::SourceCache; use crate::util::progress::ProgressBars; -- cgit v1.2.3