Skip to content

Commit 4fd9230

Browse files
feat: disable ssl verification using a flag (#66)
Changes done in pact-foundation/pact_broker-client@eb2125b
1 parent 8e5bb1c commit 4fd9230

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packaging/pact-broker.rb

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
require 'pact_broker/client/cli/broker'
22

3+
if ENV['PACT_BROKER_DISABLE_SSL_VERIFICATION'] == 'true' || ENV['PACT_DISABLE_SSL_VERIFICATION'] == 'true'
4+
require 'openssl'
5+
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
6+
$stderr.puts "WARN: SSL verification has been disabled by a dodgy hack (reassigning the VERIFY_PEER constant to VERIFY_NONE). You acknowledge that you do this at your own risk!"
7+
end
8+
39
class Thor
410
module Base
511
module ClassMethods

0 commit comments

Comments
 (0)