Fixes invalid call to #resize, should be #resize_machine

This commit is contained in:
Kevin Chan 2012-04-10 22:40:27 +08:00
parent baf0f445e9
commit 5ce6eaf5c6
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ module Fog
def resize(flavor)
requires :id
self.connection.resize(id, flavor)
self.connection.resize_machine(id, flavor)
true
end