feat: Raise connection error upon unexpected error

This e.g. makes sure the API is not bombarded with unauthorized calls if the token is wrong
This commit is contained in:
moanos [he/him] 2025-01-26 17:07:50 +01:00
parent 0051cb07c9
commit 885bed888d

View File

@ -42,6 +42,8 @@ def send_to_api(data):
print(f"Error: Shelter '{data['name']}' already exists or invalid data.") print(f"Error: Shelter '{data['name']}' already exists or invalid data.")
else: else:
print(f"Unexpected Error: {response.status_code} - {response.text}") print(f"Unexpected Error: {response.status_code} - {response.text}")
raise ConnectionError
def main(): def main():
# Step 1: Load OSM data # Step 1: Load OSM data