diff --git a/backend/src/landmarks/cluster_manager.py b/backend/src/landmarks/cluster_manager.py index 92e3ab4..0faa7d9 100644 --- a/backend/src/landmarks/cluster_manager.py +++ b/backend/src/landmarks/cluster_manager.py @@ -146,12 +146,9 @@ class ClusterManager: self.logger.debug(f"Found 0 {cluster_type} clusters.") self.valid = False - except UnboundLocalError as ule: - self.logger.warning(f"Error fetching clusters due to overpass crash: {ule}") - self.valid = False except Exception as e: - self.logger.warning(f"Error fetching clusters: {e}") - raise Exception from e + self.logger.warning(f"Could not fetch clusters: {e}") + self.valid = False