From b2d73379086fc1ca357d4b8fdd143b33baaa5fe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 13 Jun 2022 13:00:03 +0200 Subject: [PATCH] scrutinise: increase timeout (#66146) --- scrutiny/projects/management/commands/scrutinise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrutiny/projects/management/commands/scrutinise.py b/scrutiny/projects/management/commands/scrutinise.py index 4db7f5a..e438671 100644 --- a/scrutiny/projects/management/commands/scrutinise.py +++ b/scrutiny/projects/management/commands/scrutinise.py @@ -20,7 +20,7 @@ class Command(BaseCommand): if self.verbose: print('Checking %s' % service.url) try: - response = requests.get('%s__version__' % service.url, timeout=5, verify=True) + response = requests.get('%s__version__' % service.url, timeout=25, verify=True) response.raise_for_status() except requests.RequestException as e: print('Error with %s (%r)' % (service.url, e))