From 29d5b3627d8def8d60114ec451761e90f5eeb891 Mon Sep 17 00:00:00 2001 From: sophia Date: Fri, 4 Mar 2022 14:36:35 -0600 Subject: [PATCH] Always assume machine entry is valid on the ruby side --- lib/vagrant/machine_index/remote.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/vagrant/machine_index/remote.rb b/lib/vagrant/machine_index/remote.rb index acf91e702..5590eb265 100644 --- a/lib/vagrant/machine_index/remote.rb +++ b/lib/vagrant/machine_index/remote.rb @@ -14,7 +14,7 @@ module Vagrant vagrantfile_path: machine.project.vagrantfile_path, machine: machine }) - self.new(machine.get_uuid, raw) + self.new(machine.id, raw) end end @@ -60,6 +60,11 @@ module Vagrant }.merge(opts)) end end + + def valid?(home_path) + # Always return true + true + end end end end