From a1e55b286584c162a55f07e9a8c843b6291549cb Mon Sep 17 00:00:00 2001 From: taco-paco Date: Wed, 16 Oct 2024 13:23:23 +0300 Subject: [PATCH] fix: excessive info from /health --- api/src/handlers/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/handlers/mod.rs b/api/src/handlers/mod.rs index c6469a5..4de39d1 100644 --- a/api/src/handlers/mod.rs +++ b/api/src/handlers/mod.rs @@ -26,7 +26,7 @@ lazy_static! { static ref SPAWN_SEMAPHORE: Semaphore = Semaphore::new(PROCESS_SPAWN_LIMIT); } -#[instrument] +#[instrument(skip(engine))] #[get("/health")] pub async fn health(engine: &State) -> HealthCheckResponse { info!("/health");