diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2015-02-27 14:40:32 -0800 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2015-02-27 14:40:32 -0800 |
commit | 716728847e8b67614c8590cadecdaea21c192751 (patch) | |
tree | ca90ebdd9fe3dbd55a008fb76cf318907964c398 /lib/chef/config.rb | |
parent | 57bb33185992637a6e9cb60adbc5f54d46a90269 (diff) | |
download | chef-716728847e8b67614c8590cadecdaea21c192751.tar.gz |
Change default timeout to 2 hours
Diffstat (limited to 'lib/chef/config.rb')
-rw-r--r-- | lib/chef/config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/config.rb b/lib/chef/config.rb index a22f0169bb..2eb9870a64 100644 --- a/lib/chef/config.rb +++ b/lib/chef/config.rb @@ -646,7 +646,7 @@ class Chef config_context :windows_service do # Set `watchdog_timeout` to the number of seconds to wait for a chef-client run # to finish - default :watchdog_timeout, 20 * 60 + default :watchdog_timeout, 2 * (60 * 60) # 2 hours end # Chef requires an English-language UTF-8 locale to function properly. We attempt |