mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #2277 from fnichol/linode-excon-invalid-host-key
[linode|compute] Avoid passing host to request.
This commit is contained in:
commit
1b7dfb2fc9
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ module Fog
|
|||
params[:query] ||= {}
|
||||
params[:query].merge!(:api_key => @linode_api_key)
|
||||
|
||||
response = @connection.request(params.merge!({:host => @host}))
|
||||
response = @connection.request(params)
|
||||
|
||||
unless response.body.empty?
|
||||
response.body = Fog::JSON.decode(response.body)
|
||||
|
|
Loading…
Reference in a new issue