summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2024-07-15 09:39:02 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2024-07-15 09:50:37 +0200
commit8453a8d9caafbd7a484fd990af5f89c83da7991f (patch)
treec70448a870e1266749e340e9878fb0e580264bb1
parent9d8a95cc743853b60df47fbb08f51e2605fc2ad7 (diff)
utils: clean up error reporting related to checksum
When checksum is not available, it displays: (2024-07-15 09:04:14) ogClient: [ERROR] - URL error when fetching checksum: Not Found "URL error" is leaking an internal implementation details, reword this report.
-rw-r--r--src/utils/tiptorrent.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/tiptorrent.py b/src/utils/tiptorrent.py
index 8fc1631..079a41f 100644
--- a/src/utils/tiptorrent.py
+++ b/src/utils/tiptorrent.py
@@ -35,9 +35,9 @@ def tip_fetch_csum(tip_addr, image_name):
with urllib.request.urlopen(f'{url}') as resp:
r = resp.readline().rstrip().decode('utf-8')
except urllib.error.URLError as e:
- raise OgError(f'URL error when fetching checksum: {e.reason}') from e
+ raise OgError(f'Error fetching checksum file from {url}: {e.reason}') from e
except urllib.error.HTTPError as e:
- raise OgError(f'HTTP Error when fetching checksum: {e.reason}') from e
+ raise OgError(f'Error fetching checksum file via HTTP from {url}: {e.reason}') from e
return r