Explorar el Código

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

pull/3011/head
Matheus Felipe hace 2 años
padre
commit
ae7ac00586
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: AA785C523274872F
Se han modificado 1 ficheros con 8 adiciones y 4 borrados
  1. +8
    -4
      scripts/validate/links.py

+ 8
- 4
scripts/validate/links.py Ver fichero

@@ -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}'


Cargando…
Cancelar
Guardar