From 2100d8c30ff684ce6494f845b38690501f18fbf1 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Fri, 23 May 2025 11:17:35 +0200 Subject: [PATCH] misc: performance-metrics: streamline error Display::fmt() The changes were mostly automatically applied using the Python script mentioned in the first commit of this series. Signed-off-by: Philipp Schuster On-behalf-of: SAP philipp.schuster@sap.com --- performance-metrics/src/performance_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance-metrics/src/performance_tests.rs b/performance-metrics/src/performance_tests.rs index 7cab1db1b..7bbecf889 100644 --- a/performance-metrics/src/performance_tests.rs +++ b/performance-metrics/src/performance_tests.rs @@ -24,7 +24,7 @@ pub const FOCAL_IMAGE_NAME: &str = "focal-server-cloudimg-arm64-custom-20210929- enum Error { #[error("boot time could not be parsed")] BootTimeParse, - #[error("infrastructure failure: {0}")] + #[error("infrastructure failure")] Infra(#[from] InfraError), #[error("restore time could not be parsed")] RestoreTimeParse,