From 872fa3e0656e2c2b6b04f8d6b3e93a82e74a45ad Mon Sep 17 00:00:00 2001 From: John Benninghoff Date: Tue, 1 Apr 2025 15:39:35 -0500 Subject: [PATCH 1/2] Change HTMLProofer timeout --- Rakefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Rakefile b/Rakefile index 4142915..af0c968 100644 --- a/Rakefile +++ b/Rakefile @@ -29,6 +29,13 @@ end desc 'verify links' task test: :build do options = { + typhoeus: + { + followlocation: true, + connecttimeout: 20, # default: 10 + timeout: 60 # default: 30 + }, + hydra: { max_concurrency: 50 }, check_external_hash: true, check_internal_hash: true, check_favicon: true, From d28c50dd2c3e0912d51edc04aad9f646a7d6520a Mon Sep 17 00:00:00 2001 From: John Benninghoff Date: Tue, 1 Apr 2025 16:02:25 -0500 Subject: [PATCH 2/2] Update HTMLProofer timeout --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index af0c968..6005d56 100644 --- a/Rakefile +++ b/Rakefile @@ -32,8 +32,8 @@ task test: :build do typhoeus: { followlocation: true, - connecttimeout: 20, # default: 10 - timeout: 60 # default: 30 + connecttimeout: 30, # default: 10 + timeout: 90 # default: 30 }, hydra: { max_concurrency: 50 }, check_external_hash: true,