style(hive-metric): treefmt shutdown() call

This commit is contained in:
damocles 2026-07-08 22:38:29 +02:00 committed by mara
commit 307e4a9ad5

View file

@ -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(())
}