From 84d2dc1c60bce4d1f4489ac7741bd3063ffdd27b Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Fri, 1 Oct 2021 11:30:59 -0700 Subject: [PATCH] Always extend connector when prepending the client setup module --- plugins/commands/serve/util/client_setup.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/commands/serve/util/client_setup.rb b/plugins/commands/serve/util/client_setup.rb index c9e23d1c4..5439ebc88 100644 --- a/plugins/commands/serve/util/client_setup.rb +++ b/plugins/commands/serve/util/client_setup.rb @@ -3,6 +3,7 @@ module VagrantPlugins module Util module ClientSetup def self.prepended(klass) + klass.extend(Connector) klass.class_eval do attr_reader :broker, :client, :proto end