From 2cd5817b18d2613a58bca4d8a2f72f91e07a70f9 Mon Sep 17 00:00:00 2001 From: "Morley, Jonathan" Date: Fri, 4 Nov 2016 18:22:43 -0400 Subject: [PATCH] Increase timeout of mixlibshellout --- lib/workup/helpers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/workup/helpers.rb b/lib/workup/helpers.rb index 66d7c6b..f8ebd52 100755 --- a/lib/workup/helpers.rb +++ b/lib/workup/helpers.rb @@ -51,7 +51,7 @@ def chef_client(client_rb, dry_run = false) cmd << '-A' if Gem.win_platform? cmd << '--why-run' if dry_run - execute(*cmd, live_stdout: STDOUT, live_stderr: STDERR) + execute(*cmd, live_stdout: STDOUT, live_stderr: STDERR, timeout: 6*60*60) end def chef_apply(recipe, dry_run = false)