# File lib/puppet/network/http_pool.rb, line 40 40: def self.read_cert 41: if val = super # This calls read_cert from the Puppet::SSLCertificates::Support module. 42: # Clear out all of our connections, since they previously had no cert and now they 43: # should have them. 44: clear_http_instances 45: return val 46: else 47: return false 48: end 49: end