From b48aa6ca9b88fc6ca977928ac58a3036b24470a9 Mon Sep 17 00:00:00 2001 From: Norio Nomura Date: Mon, 13 Oct 2025 13:33:24 +0900 Subject: [PATCH] pkg/hostagent: Fix to `SkipSocketForwarding` Signed-off-by: Norio Nomura --- pkg/hostagent/hostagent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/hostagent/hostagent.go b/pkg/hostagent/hostagent.go index 50cdf9edacf..d66f2812a91 100644 --- a/pkg/hostagent/hostagent.go +++ b/pkg/hostagent/hostagent.go @@ -634,7 +634,7 @@ func (a *HostAgent) watchGuestAgentEvents(ctx context.Context) { // TODO: use vSock (when QEMU for macOS gets support for vSock) // Setup all socket forwards and defer their teardown - if !(a.driver.Info().Features.DynamicSSHAddress) { + if !(a.driver.Info().Features.SkipSocketForwarding) { logrus.Debugf("Forwarding unix sockets") for _, rule := range a.instConfig.PortForwards { if rule.GuestSocket != "" {