From 69aa7b73f2d672ba8fb0852a88df1a2458807d26 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 18 Sep 2019 21:56:34 +0200 Subject: [PATCH] timeout: change default from 300 to 900 seconds Linking big libraries may take more than five minutes, so change the default timeout to fifteen minutes to save users from frustration. This is the same value that I'm using to build binary packages for the repository. Pushing directly to master without making a merge request, because this is a trivial change. --- pmb/parse/arguments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/parse/arguments.py b/pmb/parse/arguments.py index 2c50931a..17c3372b 100644 --- a/pmb/parse/arguments.py +++ b/pmb/parse/arguments.py @@ -308,7 +308,7 @@ def arguments(): action="store_true") parser.add_argument("-t", "--timeout", help="seconds after which processes" " get killed that stopped writing any output (default:" - " 300)", default=300, type=float) + " 900)", default=900, type=float) parser.add_argument("-w", "--work", help="folder where all data" " gets stored (chroots, caches, built packages)") parser.add_argument("-y", "--assume-yes", help="Assume 'yes' to all"