1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

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

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