diff options
author | Luke Kanies <luke@madstop.com> | 2008-11-11 10:47:32 -0600 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-11-11 12:53:37 -0800 |
commit | 14af971bc618d665f481142934b2f612d503823c (patch) | |
tree | 08804f17e7b75110d0ea584583e235c8a4778cd0 /lib/puppet/network | |
parent | 99a0770a30c7c9a1349fd693cda31bdbf2717864 (diff) | |
download | puppet-14af971bc618d665f481142934b2f612d503823c.tar.gz puppet-14af971bc618d665f481142934b2f612d503823c.tar.xz puppet-14af971bc618d665f481142934b2f612d503823c.zip |
Changing the Cacher.invalidate method to Cacher.expire.
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet/network')
-rw-r--r-- | lib/puppet/network/http_pool.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/network/http_pool.rb b/lib/puppet/network/http_pool.rb index 78a35cc15..4b371abe7 100644 --- a/lib/puppet/network/http_pool.rb +++ b/lib/puppet/network/http_pool.rb @@ -28,7 +28,7 @@ module Puppet::Network::HttpPool http_cache.each do |name, connection| connection.finish if connection.started? end - Puppet::Util::Cacher.invalidate + Puppet::Util::Cacher.expire end # Make sure we set the driver up when we read the cert in. |