Skip to content

Commit

Permalink
Fix for issue #16
Browse files Browse the repository at this point in the history
  • Loading branch information
devnuller committed Nov 29, 2013
1 parent 434040a commit b794fa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cloudstack_ruby_client/base_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def request(params)
url = "#{@api_url}?#{data}&signature=#{signature}"
uri = URI.parse(url)
http = Net::HTTP.new(uri.host, uri.port)
# http.use_ssl = @use_ssl
# http.verify_mode = OpenSSL::SSL::VERIFY_NONE
http.use_ssl = @use_ssl
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(uri.request_uri)

http.request(request)
Expand Down

0 comments on commit b794fa3

Please sign in to comment.