scrutinise: increase timeout (#66146)

This commit is contained in:
Frédéric Péters 2022-06-13 13:00:03 +02:00
parent 0aeb7046f6
commit b2d7337908
1 changed files with 1 additions and 1 deletions

View File

@ -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))