diff options
author | Luke Kanies <luke@madstop.com> | 2008-05-07 14:45:13 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-05-07 14:45:13 -0500 |
commit | e936ef2426464b901638bf338c1c42590245b58f (patch) | |
tree | 2ba78ca3e29c0dc63a115ae0191b7c74e7829dab /lib/puppet/network | |
parent | 1cfb0215a4d56af9ac1e0c672d9ae597dfde846e (diff) | |
download | puppet-e936ef2426464b901638bf338c1c42590245b58f.tar.gz puppet-e936ef2426464b901638bf338c1c42590245b58f.tar.xz puppet-e936ef2426464b901638bf338c1c42590245b58f.zip |
Fixing some broken tests.
The HttpPool module now removes its cached ssl_host instance
when clearing its cache. This is really only useful
for testing, but it correctly causes the pool to use
new certificates when they're available.
Diffstat (limited to 'lib/puppet/network')
-rw-r--r-- | lib/puppet/network/http_pool.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/puppet/network/http_pool.rb b/lib/puppet/network/http_pool.rb index 24cbee656..cf17a8380 100644 --- a/lib/puppet/network/http_pool.rb +++ b/lib/puppet/network/http_pool.rb @@ -33,6 +33,7 @@ module Puppet::Network::HttpPool @http_cache.clear @cert = nil @key = nil + @ssl_host = nil end # Make sure we set the driver up when we read the cert in. |