diff options
Diffstat (limited to 'lib/chef/application/apply.rb')
-rw-r--r-- | lib/chef/application/apply.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/chef/application/apply.rb b/lib/chef/application/apply.rb index c8c0c0eaf6..8d64c48102 100644 --- a/lib/chef/application/apply.rb +++ b/lib/chef/application/apply.rb @@ -213,11 +213,11 @@ class Chef::Application::Apply < Chef::Application end runner = Chef::Runner.new(run_context) catch(:end_client_run_early) do - begin - runner.converge - ensure - @recipe_fh.close - end + + runner.converge + ensure + @recipe_fh.close + end Chef::Platform::Rebooter.reboot_if_needed!(runner) end |