mirror of
https://github.com/home-assistant/core.git
synced 2026-04-28 18:12:37 +02:00
Disable always_update in cert_expiry coordinator (#97417)
This commit is contained in:
@@ -65,10 +65,7 @@ class CertExpiryDataUpdateCoordinator(DataUpdateCoordinator[datetime | None]):
|
||||
name = f"{self.host}{display_port}"
|
||||
|
||||
super().__init__(
|
||||
hass,
|
||||
_LOGGER,
|
||||
name=name,
|
||||
update_interval=SCAN_INTERVAL,
|
||||
hass, _LOGGER, name=name, update_interval=SCAN_INTERVAL, always_update=False
|
||||
)
|
||||
|
||||
async def _async_update_data(self) -> datetime | None:
|
||||
|
||||
Reference in New Issue
Block a user