Unverified Commit ae7ac005 authored by Matheus Felipe's avatar Matheus Felipe
Browse files

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

parent a553dd59
...@@ -172,14 +172,18 @@ def check_if_link_is_working(link: str) -> Tuple[bool, str]: ...@@ -172,14 +172,18 @@ def check_if_link_is_working(link: str) -> Tuple[bool, str]:
has_error = True has_error = True
error_message = f'ERR:CLT: {code} : {link}' 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: except requests.exceptions.SSLError as error:
has_error = True has_error = True
error_message = f'ERR:SSL: {error} : {link}' 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: except requests.exceptions.TooManyRedirects as error:
has_error = True has_error = True
error_message = f'ERR:TMR: {error} : {link}' error_message = f'ERR:TMR: {error} : {link}'
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment