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

[rackspace|lb] Pass through timeout option on LB creation (also, we know algorithm works)

Remove comment
This commit is contained in:
Decklin Foster 2013-05-28 12:07:42 -04:00
parent 667c473b7d
commit 4bb698f331

View file

@ -10,11 +10,11 @@ module Fog
'protocol' => protocol,
'virtualIps' => virtual_ips,
'nodes' => nodes
#Is algorithm allowed on create?
}
}
data['loadBalancer']['algorithm'] = options[:algorithm] if options.has_key? :algorithm
data['loadBalancer']['timeout'] = options[:timeout] if options.has_key? :timeout
request(
:body => Fog::JSON.encode(data),