summaryrefslogtreecommitdiff
path: root/lib/chef/client.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2019-03-12 15:35:54 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2019-03-12 15:35:54 -0700
commitdfab5dcee8e8bfa25bba7b87b5a4366347d53279 (patch)
treeb2269d4b29211083ac3ad4661acf925cf0365350 /lib/chef/client.rb
parent909fa8a404b37f7faad24aacd87c95dc80462256 (diff)
downloadchef-dfab5dcee8e8bfa25bba7b87b5a4366347d53279.tar.gz
remove more converge_exception
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/client.rb')
-rw-r--r--lib/chef/client.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/chef/client.rb b/lib/chef/client.rb
index c547a8c39a..459ce77306 100644
--- a/lib/chef/client.rb
+++ b/lib/chef/client.rb
@@ -644,7 +644,6 @@ class Chef
# @api private
#
def converge(run_context)
- converge_exception = nil
catch(:end_client_run_early) do
begin
events.converge_start(run_context)
@@ -654,11 +653,9 @@ class Chef
events.converge_complete
rescue Exception => e
events.converge_failed(e)
- converge_exception = e
raise e
end
end
- converge_exception
end
# Converge the node via and then save it if successful.