From a7d220b828ec5f277a3a3bfb33f517fe864579d0 Mon Sep 17 00:00:00 2001 From: Rick Bradley Date: Fri, 5 Oct 2007 19:51:47 -0500 Subject: Moving the webrick/mongrel "servers" over to HTTPServer module instead of Server. Using Server as the master class for client connections. Server (former RESTServer) will instantiate the appropriate subclass based upon Puppet configurator setting. There are now tests broken in the network section which I can't seem to figure out yet. Not a happy place to be. --- test/network/handler/ca.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/network/handler') diff --git a/test/network/handler/ca.rb b/test/network/handler/ca.rb index 3e74f8e05..e349f9c4c 100755 --- a/test/network/handler/ca.rb +++ b/test/network/handler/ca.rb @@ -191,7 +191,7 @@ class TestCA < Test::Unit::TestCase server = nil Puppet[:name] = "puppetmasterd" assert_nothing_raised { - server = Puppet::Network::Server::WEBrick.new( + server = Puppet::Network::HTTPServer::WEBrick.new( :Port => @@port, :Handlers => { :CA => {}, # so that certs autogenerate -- cgit