From c66011f7fcb6d555b9464256bbd8928c3727016f Mon Sep 17 00:00:00 2001 From: Bill Minckler Date: Fri, 24 Jul 2026 09:16:13 -0400 Subject: [PATCH] fix(health): wrap static machine id in Some after field made optional PR #4003 changed StaticMachineEndpoint.id from String to Option but left the test fixture passing a bare String, breaking the lib test build. Co-Authored-By: Claude Sonnet 4.6 (1M context) --- crates/health/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/health/src/config.rs b/crates/health/src/config.rs index 7bb28609e4..f6a7927619 100644 --- a/crates/health/src/config.rs +++ b/crates/health/src/config.rs @@ -1852,7 +1852,7 @@ mod tests { fn static_machine() -> StaticMachineEndpoint { StaticMachineEndpoint { - id: "machine-id".to_string(), + id: Some("machine-id".to_string()), serial: None, driver_version: None, slot_number: None,