1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-18 09:49:54 +02:00

Throttle concurrency of html link checker

spdx.org obtains 503 if too many connections opened, it seems eg
https://travis-ci.org/github/choosealicense.com/builds/439831256

Problem goes away locally when html-proofer/typhoeus/hydra default
changed from 200 to 10
This commit is contained in:
Mike Linksvayer 2018-10-19 11:55:08 +02:00
parent 2db49e1e50
commit da8b1d2194

View File

@ -16,6 +16,7 @@ task :test do
check_html: true,
validation: { ignore_script_embeds: true },
url_swap: { %r{https://choosealicense.com} => '' },
hydra: { max_concurrency: 10 },
check_img_http: true).run
end