From e292d8d16cfb08ae7ab2ee05db7d5c1603e12830 Mon Sep 17 00:00:00 2001 From: iris Date: Sun, 19 Jul 2026 13:46:37 +0200 Subject: [PATCH] fix: use crate::warnings re-export (consistent with forge/mod.rs) --- hive-c0re/src/forge/ci_runner.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hive-c0re/src/forge/ci_runner.rs b/hive-c0re/src/forge/ci_runner.rs index 7a2ca4a2..a5b1b8d7 100644 --- a/hive-c0re/src/forge/ci_runner.rs +++ b/hive-c0re/src/forge/ci_runner.rs @@ -49,7 +49,7 @@ pub(super) async fn ensure_ci_runner_registered(core_token: &str) { Ok(token) => { if let Err(e) = crate::priv_client::register_ci_runner(&token).await { tracing::warn!(error = ?e, "ci runner: hive-priv register_ci_runner failed"); - crate::stats::warnings::set_boot_warning( + crate::warnings::set_boot_warning( "ci_runner_register", "crit", format!("ci runner: hive-priv register_ci_runner failed: {e}"), @@ -60,7 +60,7 @@ pub(super) async fn ensure_ci_runner_registered(core_token: &str) { } Err(e) => { tracing::warn!(error = ?e, "ci runner: fetch registration token failed"); - crate::stats::warnings::set_boot_warning( + crate::warnings::set_boot_warning( "ci_runner_fetch_token", "crit", format!("ci runner: fetch registration token failed: {e}"),