Browse Source

Mapped network problem (DNS failure, connection refused, etc)

pull/3011/head
Matheus Felipe 2 years ago
parent
commit
ae7ac00586
No known key found for this signature in database GPG Key ID: AA785C523274872F
1 changed files with 8 additions and 4 deletions
  1. +8
    -4
      scripts/validate/links.py

+ 8
- 4
scripts/validate/links.py View File

@@ -172,14 +172,18 @@ def check_if_link_is_working(link: str) -> Tuple[bool, str]:
has_error = True
error_message = f'ERR:CLT: {code} : {link}'

except (TimeoutError, requests.exceptions.ConnectTimeout):
has_error = True
error_message = f'ERR:TMO: {link}'

except requests.exceptions.SSLError as error:
has_error = True
error_message = f'ERR:SSL: {error} : {link}'

except requests.exceptions.ConnectionError as error:
has_error = True
error_message = f'ERR:CNT: {error} : {link}'

except (TimeoutError, requests.exceptions.ConnectTimeout):
has_error = True
error_message = f'ERR:TMO: {link}'

except requests.exceptions.TooManyRedirects as error:
has_error = True
error_message = f'ERR:TMR: {error} : {link}'


Loading…
Cancel
Save