Skip to content

Commit

Permalink
Disable always_update in cert_expiry coordinator (home-assistant#97417)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Jul 28, 2023
1 parent 44a3885 commit e1f14ed
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions homeassistant/components/cert_expiry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,7 @@ def __init__(self, hass, host, port):
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:
Expand Down

0 comments on commit e1f14ed

Please sign in to comment.