Skip to content
Snippets Groups Projects
Unverified Commit 04b0760e authored by Daniel Rozycki's avatar Daniel Rozycki Committed by GitHub
Browse files

Skip NextBus update if integration is still loading (#123564)


* Skip NextBus update if integration is still loading

Fixes a race between the loading thread and
update thread leading to an unrecoverable error

* Use async_at_started

* Use local copy of _route_stops to avoid NextBus race condition

* Update homeassistant/components/nextbus/coordinator.py

---------

Co-authored-by: default avatarJoost Lekkerkerker <joostlek@outlook.com>
parent e3287b93
No related branches found
No related tags found
No related merge requests found
...@@ -50,13 +50,15 @@ class NextBusDataUpdateCoordinator(DataUpdateCoordinator): ...@@ -50,13 +50,15 @@ class NextBusDataUpdateCoordinator(DataUpdateCoordinator):
async def _async_update_data(self) -> dict[str, Any]: async def _async_update_data(self) -> dict[str, Any]:
"""Fetch data from NextBus.""" """Fetch data from NextBus."""
self.logger.debug("Updating data from API. Routes: %s", str(self._route_stops))
_route_stops = set(self._route_stops)
self.logger.debug("Updating data from API. Routes: %s", str(_route_stops))
def _update_data() -> dict: def _update_data() -> dict:
"""Fetch data from NextBus.""" """Fetch data from NextBus."""
self.logger.debug("Updating data from API (executor)") self.logger.debug("Updating data from API (executor)")
predictions: dict[RouteStop, dict[str, Any]] = {} predictions: dict[RouteStop, dict[str, Any]] = {}
for route_stop in self._route_stops: for route_stop in _route_stops:
prediction_results: list[dict[str, Any]] = [] prediction_results: list[dict[str, Any]] = []
try: try:
prediction_results = self.client.predictions_for_stop( prediction_results = self.client.predictions_for_stop(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment