Skip to content

Commit 164912b

Browse files
authored
feat: use certificates from SSL_CERT_FILE and SSL_CERT_DIR environment variables in HTTP connections
1 parent f24257b commit 164912b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/pact/hal/http_client.rb

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ def perform_request request, uri
5050
http = Net::HTTP.new(uri.host, uri.port, :ENV)
5151
http.set_debug_output(output_stream) if verbose
5252
http.use_ssl = (uri.scheme == 'https')
53+
http.ca_file = ENV['SSL_CERT_FILE'] if ENV['SSL_CERT_FILE'] && ENV['SSL_CERT_FILE'] != ''
54+
http.ca_path = ENV['SSL_CERT_DIR'] if ENV['SSL_CERT_DIR'] && ENV['SSL_CERT_DIR'] != ''
5355
http.start do |http|
5456
http.request request
5557
end

0 commit comments

Comments
 (0)