summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel DeLeo <dan@opscode.com>2010-06-28 09:00:21 -0700
committerDaniel DeLeo <dan@opscode.com>2010-06-28 09:00:21 -0700
commit726f6259f26b8035a859357d2464edaa931a0099 (patch)
treed83e5f47e3926178fe5997948c055039efc45002
parentc57a7e158a3aa0c3ac2634d75c87627e9c792585 (diff)
parent69527f5ed2e14f743fa636b28eb6540a96058da1 (diff)
downloadchef-726f6259f26b8035a859357d2464edaa931a0099.tar.gz
Merge branch 'CHEF-1394'
-rw-r--r--chef/lib/chef/client.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/lib/chef/client.rb b/chef/lib/chef/client.rb
index b8403c1767..310cf029f1 100644
--- a/chef/lib/chef/client.rb
+++ b/chef/lib/chef/client.rb
@@ -129,7 +129,7 @@ class Chef
def run_report_handlers(run_status)
Chef::Log.info("Running report handlers")
Array(Chef::Config[:report_handlers]).each do |handler|
- handler.run_report_safely(handler)
+ handler.run_report_safely(run_status)
end
Chef::Log.info("Report handlers complete")
end