summaryrefslogtreecommitdiff
path: root/lib/chef/resource_reporter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource_reporter.rb')
-rw-r--r--lib/chef/resource_reporter.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/resource_reporter.rb b/lib/chef/resource_reporter.rb
index 1816fc857d..cc01ebd9e5 100644
--- a/lib/chef/resource_reporter.rb
+++ b/lib/chef/resource_reporter.rb
@@ -177,17 +177,17 @@ class Chef
end
end
- def resource_up_to_date(new_resource, action)
+ def resource_up_to_date(new_resource, _action)
@total_res_count += 1
@pending_update = nil unless nested_resource?(new_resource)
end
- def resource_skipped(resource, action, conditional)
+ def resource_skipped(resource, _action, _conditional)
@total_res_count += 1
@pending_update = nil unless nested_resource?(resource)
end
- def resource_updated(new_resource, action)
+ def resource_updated(_new_resource, _action)
@total_res_count += 1
end
@@ -209,7 +209,7 @@ class Chef
end
end
- def run_completed(node)
+ def run_completed(_node)
@status = "success"
post_reporting_data
end