summaryrefslogtreecommitdiffstats
path: root/src/orchestrator
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-12-03 08:17:18 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-12-03 08:17:18 +0100
commit7dfca01d8e8bffe0ca09ca58fe7e11f9d34514d2 (patch)
tree734ebfeda6dfb6e7fb0dc16312f9320a6d2bce52 /src/orchestrator
parentfcdda0b9999fbb5f796ad67f8a23ffdfe2093b2b (diff)
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 <mail@beyermatthias.de>
Diffstat (limited to 'src/orchestrator')
-rw-r--r--src/orchestrator/orchestrator.rs4
1 files changed, 0 insertions, 4 deletions
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;