From b609a444522e55e0b4638d6f7d56d8cf714d2037 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Tue, 17 Aug 2021 12:50:55 -0700 Subject: [PATCH] Fix method name called on machine client --- lib/vagrant/machine/remote.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/machine/remote.rb b/lib/vagrant/machine/remote.rb index ebc2e212b..35285da66 100644 --- a/lib/vagrant/machine/remote.rb +++ b/lib/vagrant/machine/remote.rb @@ -102,7 +102,7 @@ module Vagrant def state s = @provider.state if s != @_cached_state - client.set_state(s) unless s.nil? + client.set_machine_state(s) unless s.nil? @_cached_state = s end s