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:
parent
d92586ca72
commit
1099a03b10
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue