lib/vagrant-conoha/provider.rb in vagrant-conoha-0.1.5 vs lib/vagrant-conoha/provider.rb in vagrant-conoha-0.1.6
- old
+ new
@@ -20,18 +20,18 @@
def ssh_info
# Run a custom action called "read_ssh_info" which does what it
# says and puts the resulting SSH info into the `:machine_ssh_info`
# key in the environment.
- env = @machine.action('read_ssh_info')
+ env = @machine.action('read_ssh_info', lock: false)
env[:machine_ssh_info]
end
def state
# Run a custom action we define called "read_state" which does
# what it says. It puts the state in the `:machine_state_id`
# key in the environment.
- env = @machine.action('read_state')
+ env = @machine.action('read_state', lock: false)
state_id = env[:machine_state_id]
# Get the short and long description
short = I18n.t("vagrant_openstack.states.short_#{state_id}")