Sfoglia il codice sorgente

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

pull/3011/head
Matheus Felipe 2 anni fa
parent
commit
ae7ac00586
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: AA785C523274872F
1 ha cambiato i file con 8 aggiunte e 4 eliminazioni
  1. +8
    -4
      scripts/validate/links.py

+ 8
- 4
scripts/validate/links.py Vedi 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}'


Caricamento…
Annulla
Salva