From c029e087d63444a88cb1e6afeca3e87c0f6f14bc Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 30 Oct 2018 16:28:52 +0100 Subject: Increase default timeouts These are more sane than the previous super-short defaults. Obviously this will slow down recursive crawls. --- crocoite/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crocoite') diff --git a/crocoite/cli.py b/crocoite/cli.py index ab336e1..ca38bca 100644 --- a/crocoite/cli.py +++ b/crocoite/cli.py @@ -41,8 +41,8 @@ class SingleExitStatus(IntEnum): def single (): parser = argparse.ArgumentParser(description='Save website to WARC using Google Chrome.') parser.add_argument('--browser', help='DevTools URL', metavar='URL') - parser.add_argument('--timeout', default=10, type=int, help='Maximum time for archival', metavar='SEC') - parser.add_argument('--idle-timeout', default=2, type=int, help='Maximum idle seconds (i.e. no requests)', dest='idleTimeout', metavar='SEC') + parser.add_argument('--timeout', default=1*60*60, type=int, help='Maximum time for archival', metavar='SEC') + parser.add_argument('--idle-timeout', default=30, type=int, help='Maximum idle seconds (i.e. no requests)', dest='idleTimeout', metavar='SEC') parser.add_argument('--max-body-size', default=defaultSettings.maxBodySize, type=int, dest='maxBodySize', help='Max body size', metavar='BYTES') parser.add_argument('--behavior', help='Comma-separated list of enabled behavior scripts', dest='enabledBehaviorNames', -- cgit v1.2.3