Fix method name called on machine client

This commit is contained in:
Chris Roberts 2021-08-17 12:50:55 -07:00 committed by Paul Hinze
parent 3583259fc9
commit b609a44452
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -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