From d9617a8e3aa0a3fec3e62756909a5ddd2bdd3140 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 13 Apr 2024 10:56:14 -1000 Subject: [PATCH] Enable eager_start for weather platform update (#115496) --- homeassistant/components/weather/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/weather/__init__.py b/homeassistant/components/weather/__init__.py index aa4989de2fe..95655f439c9 100644 --- a/homeassistant/components/weather/__init__.py +++ b/homeassistant/components/weather/__init__.py @@ -1163,7 +1163,7 @@ class CoordinatorWeatherEntity( assert coordinator.config_entry is not None getattr(self, f"_handle_{forecast_type}_forecast_coordinator_update")() coordinator.config_entry.async_create_task( - self.hass, self.async_update_listeners((forecast_type,)), eager_start=False + self.hass, self.async_update_listeners((forecast_type,)) ) @callback @@ -1273,5 +1273,5 @@ class SingleCoordinatorWeatherEntity( super()._handle_coordinator_update() assert self.coordinator.config_entry self.coordinator.config_entry.async_create_task( - self.hass, self.async_update_listeners(None), eager_start=False + self.hass, self.async_update_listeners(None) )