Skip to content

Commit

Permalink
[43] Report some specific errors in get_yaml (#2234)
Browse files Browse the repository at this point in the history
  • Loading branch information
chazlarson authored and actions-user committed Sep 23, 2024
1 parent 97224e2 commit 6072da8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ Fixed #2195 an image on the docs was a dead link
Fixes sort order of resolution collections
Fixes #2228 ".any" not accepted for a variety of imdb_search parameters
Fixes `streaming` defaults adding and removing items randomly
Adds error information to help with #2201
Various other Minor Fixes
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.2-build42
2.0.2-build43
8 changes: 7 additions & 1 deletion modules/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,14 @@ def file_yaml(self, path_to_file, check_empty=False, create=False, start_empty=F

def get_yaml(self, url, headers=None, params=None, check_empty=False):
response = self.get(url, headers=headers, params=params)
if response.status_code >= 400:
if response.status_code == 401:
raise Failed(f"URL Error: Unauthorized - {url}")
if response.status_code == 404:
raise Failed(f"URL Error: No file found at {url}")
if response.status_code == 429:
raise Failed(f"URL Error: Too many requests - {url}")
if response.status_code >= 400:
raise Failed(f"URL Error: {response.status_code} on {url}")
return YAML(input_data=response.content, check_empty=check_empty)

def get_image(self, url, session=None):
Expand Down

0 comments on commit 6072da8

Please sign in to comment.