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

[compute|brightbox] Passing options to server group update

This commit is contained in:
Paul Thornthwaite 2011-09-21 09:04:51 +01:00
parent d92586ca72
commit 1099a03b10

View file

@ -6,7 +6,7 @@ module Fog
def update_server_group(identifier, options)
return nil if identifier.nil? || identifier == ""
return nil if options.empty? || options.nil?
request("put", "/1.0/server_groups/#{identifier}", [202])
request("put", "/1.0/server_groups/#{identifier}", [202], options)
end
end