From 0c377f7caee6e86781a89e60fd68605429f9194f Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Wed, 20 Nov 2024 13:05:53 +0000 Subject: [PATCH] add another trusted host show the error when we fail Signed-off-by: Doug Davis --- tools/verify.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/verify.py b/tools/verify.py index e93abfce1..70c46a2a5 100644 --- a/tools/verify.py +++ b/tools/verify.py @@ -135,6 +135,7 @@ async def _uri_availability_issues(uri: HttpUri, settings: Settings) -> Sequence if "example.com" in uri: return [] if "ietf.org" in uri: return [] if "rfc-edit.org" in uri: return [] + if "iso20022.org" in uri: return [] try: for attempt in Retrying(stop=stop_after_attempt(settings.http_max_get_attemps)): @@ -151,7 +152,8 @@ async def _uri_availability_issues(uri: HttpUri, settings: Settings) -> Sequence case _: return [] # no issues - except Exception: # noqa + except Exception as e: # noqa + print(f"Exception: {e}") return [Issue(f"Could Not access {repr(uri)}")] else: return []