summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-07-27 12:52:09 -0700
committerGitHub <noreply@github.com>2020-07-27 12:52:09 -0700
commit7a84235aa053a48e960317951dc23bf1efa5d471 (patch)
tree20634b4098f65664bfaaea3489ef5dfcc3955b2d
parent042ae378e449bb0499fdec015a374b859b9fc5b0 (diff)
parent9b565972c143a7fe39d1f0d63c42551bab8a541c (diff)
downloadchef-7a84235aa053a48e960317951dc23bf1efa5d471.tar.gz
Merge pull request #10212 from chef/mark_private
Mark a private method as private with yard
-rw-r--r--lib/chef/handler.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/handler.rb b/lib/chef/handler.rb
index 6622e981a0..97562ea31b 100644
--- a/lib/chef/handler.rb
+++ b/lib/chef/handler.rb
@@ -240,6 +240,8 @@ class Chef
# This ensures that all handlers get a chance to run even if one fails.
# This method should not be overridden by subclasses unless you know what
# you're doing.
+ #
+ # @api private
def run_report_safely(run_status)
run_report_unsafe(run_status)
rescue Exception => e