fix/cluster-manager-crash-due-to-overpass-exception #72

Merged
kscheidecker merged 24 commits from fix/cluster-manager-crash-due-to-overpass-exception into main 2025-11-24 19:22:23 +00:00
Showing only changes of commit 9e90aed957 - Show all commits

View File

@@ -146,12 +146,9 @@ class ClusterManager:
self.logger.debug(f"Found 0 {cluster_type} clusters.") self.logger.debug(f"Found 0 {cluster_type} clusters.")
self.valid = False 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: except Exception as e:
self.logger.warning(f"Error fetching clusters: {e}") self.logger.warning(f"Could not fetch clusters: {e}")
raise Exception from e self.valid = False