From 175f05657ce0604b3deecfac4e0e69db1483529e Mon Sep 17 00:00:00 2001 From: sophia Date: Mon, 13 Dec 2021 15:59:33 -0600 Subject: [PATCH] go generate --- .../protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb | 8 -------- plugins/commands/serve/service/communicator_service.rb | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb b/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb index a511b0e5b..712eb1f06 100644 --- a/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb +++ b/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb @@ -468,12 +468,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do add_message "hashicorp.vagrant.sdk.Communicator.Command" do optional :command, :string, 1 end - add_message "hashicorp.vagrant.sdk.Communicator.Path" do - optional :path, :string, 1 - end - add_message "hashicorp.vagrant.sdk.Communicator.RemotePath" do - optional :path, :string, 1 - end add_message "hashicorp.vagrant.sdk.Platform" do end add_message "hashicorp.vagrant.sdk.Platform.DetectResp" do @@ -936,8 +930,6 @@ module Hashicorp Communicator::ExecuteResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.Communicator.ExecuteResp").msgclass Communicator::TestResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.Communicator.TestResp").msgclass Communicator::Command = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.Communicator.Command").msgclass - Communicator::Path = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.Communicator.Path").msgclass - Communicator::RemotePath = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.Communicator.RemotePath").msgclass Platform = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.Platform").msgclass Platform::DetectResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.Platform.DetectResp").msgclass Platform::ParentResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.Platform.ParentResp").msgclass diff --git a/plugins/commands/serve/service/communicator_service.rb b/plugins/commands/serve/service/communicator_service.rb index 6fe82475d..00a4b980b 100644 --- a/plugins/commands/serve/service/communicator_service.rb +++ b/plugins/commands/serve/service/communicator_service.rb @@ -331,7 +331,7 @@ module VagrantPlugins plugin = Vagrant.plugin("2").manager.communicators[plugin_name.to_s.to_sym] communicator = plugin.new(machine) - communicator.reset() + communicator.reset Empty.new end end