diff --git a/scripts/generate_landings_risk_report.py b/scripts/generate_landings_risk_report.py index 048f236196..0b3ab9497b 100644 --- a/scripts/generate_landings_risk_report.py +++ b/scripts/generate_landings_risk_report.py @@ -119,6 +119,7 @@ def get_component_team_mapping() -> dict[str, dict[str, str]]: def get_crash_signatures(channel: str) -> dict: r = requests.get(f"https://mozilla.github.io/stab-crashes/{channel}.json") + r.raise_for_status() response = r.json() return response["signatures"]