Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/v0.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
frapposelli committed May 6, 2014
2 parents 3f25649 + 66feed5 commit e9baf0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/vagrant-vcloud/driver/version_5_1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1700,7 +1700,7 @@ def wait_task_completion(task_id)
@logger.debug(
"Evaluating taskid: #{task_id}, current status #{task[:status]}"
)
break if task[:status] != 'running'
break if !['queued','preRunning','running'].include?(task[:status])
sleep 5
end

Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-vcloud/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module VagrantPlugins
module VCloud
VERSION = '0.3.0'
VERSION = '0.3.1'
end
end

0 comments on commit e9baf0f

Please sign in to comment.