providers/docker: fix exception typo

This commit is contained in:
Mitchell Hashimoto 2014-04-20 08:35:55 -07:00
parent 89b6336d21
commit 2e8f837f9b
2 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ module VagrantPlugins
action_env = { synced_folders_config: new_config }
begin
host_machine.action(:sync_folders, action_env)
rescue Vagrant::Errors::MachineLockedError
rescue Vagrant::Errors::MachineActionLockedError
sleep 1
retry
rescue Vagrant::Errors::UnimplementedProviderAction

View File

@ -72,7 +72,7 @@ module VagrantPlugins
begin
host_machine.action(:sync_folders, action_env)
rescue Vagrant::Errors::MachineLockedError
rescue Vagrant::Errors::MachineActionLockedError
sleep 1
retry
rescue Vagrant::Errors::UnimplementedProviderAction