From 70143d217fcf3cd2bfbcfd0e5c9c38292716de2b Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 30 Jun 2006 20:43:29 +0000 Subject: Trying to merge metrics and reports. There is now a separate transaction report class, and it works throughout the previously existing system. I will next go through trying to make a metric report that graphs the metrics in rrd. git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1347 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/parser/interpreter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/puppet/parser') diff --git a/lib/puppet/parser/interpreter.rb b/lib/puppet/parser/interpreter.rb index b383f7a90..9a0e47a52 100644 --- a/lib/puppet/parser/interpreter.rb +++ b/lib/puppet/parser/interpreter.rb @@ -422,8 +422,8 @@ module Puppet if @local @ast = @parser.parse else - @ast = benchmark(:info, "Parsed manifest") do - @parser.parse + benchmark(:info, "Parsed manifest") do + @ast = @parser.parse end end -- cgit