From 307e4a9ad54c4d621bcf54c94becb6e7a1ca9a31 Mon Sep 17 00:00:00 2001 From: damocles Date: Wed, 8 Jul 2026 22:38:29 +0200 Subject: [PATCH] style(hive-metric): treefmt shutdown() call --- hive-metric/src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hive-metric/src/main.rs b/hive-metric/src/main.rs index d298eab6..931509a3 100644 --- a/hive-metric/src/main.rs +++ b/hive-metric/src/main.rs @@ -89,7 +89,9 @@ async fn main() -> Result<()> { } // Flush pending metrics and shut down cleanly. - provider.shutdown().context("failed to flush OTLP metrics")?; + provider + .shutdown() + .context("failed to flush OTLP metrics")?; Ok(()) }