diff options
author | Luke Kanies <luke@reductivelabs.com> | 2010-03-23 10:41:15 -0700 |
---|---|---|
committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
commit | 9d9b20f4e6d4bd3501033d58b0e93411e40a147a (patch) | |
tree | 9d2af8646dcb33c8443f8bee7418516b8b4f3b60 /lib | |
parent | eb0a4b5833476b51417a7047b5fb6e05843ff05b (diff) | |
download | puppet-9d9b20f4e6d4bd3501033d58b0e93411e40a147a.tar.gz puppet-9d9b20f4e6d4bd3501033d58b0e93411e40a147a.tar.xz puppet-9d9b20f4e6d4bd3501033d58b0e93411e40a147a.zip |
Fixing Configurer interface to transaction report
Signed-off-by: Luke Kanies <luke@reductivelabs.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/configurer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/configurer.rb b/lib/puppet/configurer.rb index 8179d2c4d..aa336b462 100644 --- a/lib/puppet/configurer.rb +++ b/lib/puppet/configurer.rb @@ -194,7 +194,7 @@ class Puppet::Configurer end def send_report(report, trans = nil) - trans.add_metrics_to_report(report) if trans + trans.generate_report if trans puts report.summary if Puppet[:summarize] report.save() if Puppet[:report] rescue => detail |