# File lib/occi/api/client/http/monkey_patches/httparty_fix.rb, line 12 def attach_ssl_certificates(http, options) old_attach_ssl_certificates(http, options) # Set chain of client certificates if options[:ssl_extra_chain_cert] http.extra_chain_cert = [] options[:ssl_extra_chain_cert].each do |p_ca| http.extra_chain_cert << OpenSSL::X509::Certificate.new(p_ca) end end end