Skip to content

Commit

Permalink
feat: use certificates from SSL_CERT_FILE and SSL_CERT_DIR environmen…
Browse files Browse the repository at this point in the history
…t variables in HTTP connections
  • Loading branch information
mcclenney authored Feb 13, 2020
1 parent b8e44df commit bf1333d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/pact/consumer_contract/pact_file.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@ def get_remote(uri, options)
request = Net::HTTP::Get.new(uri)
request.basic_auth(options[:username], options[:password]) if options[:username]
request['Authorization'] = "Bearer #{options[:token]}" if options[:token]
Net::HTTP.start(uri.host, uri.port, :ENV, use_ssl: uri.scheme == 'https') do |http|
http = Net::HTTP.new(uri.host, uri.port, :ENV)
http.use_ssl = (uri.scheme == 'https')
http.ca_file = ENV['SSL_CERT_FILE'] if ENV['SSL_CERT_FILE'] && ENV['SSL_CERT_FILE'] != ''
http.ca_path = ENV['SSL_CERT_DIR'] if ENV['SSL_CERT_DIR'] && ENV['SSL_CERT_DIR'] != ''
http.start do |http|
http.open_timeout = options[:open_timeout] || OPEN_TIMEOUT
http.read_timeout = options[:read_timeout] || READ_TIMEOUT
http.request(request)
Expand Down

0 comments on commit bf1333d

Please sign in to comment.