From f1d3450d1f8f632722066a65c6ff3b575dbc1c62 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Tue, 28 Jan 2025 17:26:26 +0000 Subject: [PATCH] runtime-rs: Remove unused config `gdb` is only activated by a feature `guest_debug` that doesn't exist, so remove this. Signed-off-by: stevenhorsman --- src/runtime-rs/crates/hypervisor/ch-config/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/runtime-rs/crates/hypervisor/ch-config/src/lib.rs b/src/runtime-rs/crates/hypervisor/ch-config/src/lib.rs index d2c8ceabf9..780c2ec850 100644 --- a/src/runtime-rs/crates/hypervisor/ch-config/src/lib.rs +++ b/src/runtime-rs/crates/hypervisor/ch-config/src/lib.rs @@ -446,8 +446,6 @@ pub struct VmConfig { pub numa: Option>, #[serde(default)] pub watchdog: bool, - #[cfg(feature = "guest_debug")] - pub gdb: bool, #[serde(skip_serializing_if = "Option::is_none")] pub platform: Option, }