summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/puppet/network/handler/master.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/puppet/network/handler/master.rb b/lib/puppet/network/handler/master.rb
index 1c7f7310e..8d84fe8b8 100644
--- a/lib/puppet/network/handler/master.rb
+++ b/lib/puppet/network/handler/master.rb
@@ -64,7 +64,10 @@ class Puppet::Network::Handler
Puppet::Node::Facts.new(client, facts).save unless local?
# And get the configuration from the config handler
- config = config_handler.configuration(client)
+ config = nil
+ benchmark(:notice, "Compiled configuration for %s" % client) do
+ config = config_handler.configuration(client)
+ end
return translate(config.extract)
end