Update service_status to handle both Icom and Arma service kinds

This commit is contained in:
Jacob Schmidt 2026-06-06 16:11:18 -05:00
parent b1ba7dcbfa
commit 8cbdf52ae7

View File

@ -756,7 +756,7 @@ fn service_status(
};
let pid = slot.as_ref().map(|managed| managed.child.id());
let (healthy, ping_ms) = if matches!(kind, ServiceKind::Icom) {
let (healthy, ping_ms) = if matches!(kind, ServiceKind::Icom | ServiceKind::Arma) {
if running {
(true, Some(0))
} else {