From 754399d9094e48d244215e7f191e67b4d56cbfd0 Mon Sep 17 00:00:00 2001 From: ChengyuZhu6 Date: Wed, 20 Mar 2024 12:24:17 +0800 Subject: [PATCH] agent: Add guest-pull to the list of agent features in announce() Add guest-pull to the list of agent features in announce(). Fixes: #9225 -- part IV Signed-off-by: ChengyuZhu6 --- src/agent/src/features.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/agent/src/features.rs b/src/agent/src/features.rs index c5f1b00e28..3c06d8cef8 100644 --- a/src/agent/src/features.rs +++ b/src/agent/src/features.rs @@ -8,6 +8,8 @@ pub fn get_build_features() -> Vec { let features: Vec<&str> = vec![ #[cfg(feature = "agent-policy")] "agent-policy", + #[cfg(feature = "guest-pull")] + "guest-pull", #[cfg(feature = "seccomp")] "seccomp", #[cfg(feature = "standard-oci-runtime")]