more error catching
Some checks failed
Build and deploy the backend to staging / Build and push image (pull_request) Successful in 2m16s
Run linting on the backend code / Build (pull_request) Failing after 1m1s
Run testing on the backend code / Build (pull_request) Failing after 1m44s
Build and deploy the backend to staging / Deploy to staging (pull_request) Successful in 16s

This commit is contained in:
Helldragon67 2024-12-10 16:26:53 +01:00
parent 4b9683a929
commit 449e2b2ce4

View File

@ -134,5 +134,10 @@ def get_landmark(landmark_uuid: str) -> Landmark:
landmark = cache_client.get(f"landmark_{landmark_uuid}")
return landmark
except KeyError as exc:
raise HTTPException(status_code=404,
detail="Landmark not found") from exc
raise HTTPException(status_code=404, detail="Landmark not found") from exc
except ConnectionError as exc:
raise HTTPException(status_code=503, detail="Service unavailable") from exc
except TimeoutError as exc:
raise HTTPException(status_code=504, detail="Request timed out") from exc
except Exception as exc:
raise HTTPException(status_code=500, detail="An unexpected error occurred") from exc