summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/interpreter.rb
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-06-30 20:43:29 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-06-30 20:43:29 +0000
commit70143d217fcf3cd2bfbcfd0e5c9c38292716de2b (patch)
tree65bdecdf674c7c9d88065125d34d55592c9d5337 /lib/puppet/parser/interpreter.rb
parent795ec70fc1ae678178e4a7cf16ea8fa76a122ea6 (diff)
downloadpuppet-70143d217fcf3cd2bfbcfd0e5c9c38292716de2b.tar.gz
puppet-70143d217fcf3cd2bfbcfd0e5c9c38292716de2b.tar.xz
puppet-70143d217fcf3cd2bfbcfd0e5c9c38292716de2b.zip
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
Diffstat (limited to 'lib/puppet/parser/interpreter.rb')
-rw-r--r--lib/puppet/parser/interpreter.rb4
1 files changed, 2 insertions, 2 deletions
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