From 02a42fe049b5b416bc28140e221952d6c02c3fe6 Mon Sep 17 00:00:00 2001 From: Ameer Ghani Date: Wed, 24 Jan 2024 14:04:28 -0500 Subject: [PATCH] Clippy --- aggregator/src/binaries/aggregator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aggregator/src/binaries/aggregator.rs b/aggregator/src/binaries/aggregator.rs index affe335a6..3b5d6dfe5 100644 --- a/aggregator/src/binaries/aggregator.rs +++ b/aggregator/src/binaries/aggregator.rs @@ -429,7 +429,7 @@ impl Config { ), batch_aggregation_shard_count: self.batch_aggregation_shard_count, task_counter_shard_count: self.task_counter_shard_count, - taskprov_config: self.taskprov_config.clone(), + taskprov_config: self.taskprov_config, global_hpke_configs_refresh_interval: match self.global_hpke_configs_refresh_interval { Some(duration) => Duration::from_millis(duration), None => GlobalHpkeKeypairCache::DEFAULT_REFRESH_INTERVAL,