From 185a666018c0cf0b2c497f655f942a82cd22e49e Mon Sep 17 00:00:00 2001 From: Nick Lewis Date: Tue, 19 Jul 2011 15:19:10 -0700 Subject: Remove Puppet::Network::HttpPool keep_alive handling Keep alive has been disabled since 2008, and seems to have caused problems when it was enabled before then. Since there doesn't seem to be any push to get it working again, just remove it to simplify this code. This also allows us to entirely remove the usage of Puppet::Util::Cacher from HttpPool. Paired-With: Jacob Helwig --- test/network/server/webrick.rb | 1 - test/ral/type/filesources.rb | 1 - 2 files changed, 2 deletions(-) (limited to 'test') diff --git a/test/network/server/webrick.rb b/test/network/server/webrick.rb index 624147b6c..9eed5d862 100755 --- a/test/network/server/webrick.rb +++ b/test/network/server/webrick.rb @@ -16,7 +16,6 @@ class TestWebrickServer < Test::Unit::TestCase def teardown super - Puppet::Network::HttpPool.clear_http_instances end # Make sure we can create a server, and that it knows how to create its diff --git a/test/ral/type/filesources.rb b/test/ral/type/filesources.rb index 3363aafb3..f39d53907 100755 --- a/test/ral/type/filesources.rb +++ b/test/ral/type/filesources.rb @@ -26,7 +26,6 @@ class TestFileSources < Test::Unit::TestCase def teardown super - Puppet::Network::HttpPool.clear_http_instances end def use_storage -- cgit