Upgrade metrics dependencies

This commit is contained in:
Joakim Frostegård 2025-01-12 22:15:27 +01:00
parent ea06ffd513
commit 19448fbc84
7 changed files with 35 additions and 39 deletions

View file

@ -150,7 +150,9 @@ pub fn spawn_prometheus_endpoint(
}
});
exporter.await.context("run prometheus exporter")
exporter
.await
.map_err(|err| anyhow::anyhow!("run prometheus exporter: :{:#?}", err))
})
})
.context("spawn prometheus endpoint")?;