From baf19b4d6006533df29aba3daa72c4628aab30ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=A4rtens?= Date: Thu, 22 Jul 2021 20:57:16 +0200 Subject: [PATCH] remove an unused queue_created in the Queue, might be added in the future again for more metrics. Also use core than std in one place --- common/src/slowjob.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/common/src/slowjob.rs b/common/src/slowjob.rs index b66b08aab0..1251aae4b5 100644 --- a/common/src/slowjob.rs +++ b/common/src/slowjob.rs @@ -77,7 +77,6 @@ struct Config { struct Queue { id: u64, name: String, - _queue_created: Instant, task: Box, } @@ -98,7 +97,6 @@ impl Queue { Self { id, name: name.to_owned(), - _queue_created: queue_created, task: Box::new(move || { common_base::prof_span!(_guard, &name_cloned); let execution_start = Instant::now(); @@ -325,7 +323,7 @@ impl InternalSlowJobPool { } pub fn take_metrics(&mut self) -> HashMap> { - std::mem::replace(&mut self.jobs_metrics, HashMap::new()) + core::mem::take(&mut self.jobs_metrics) } }