1
mirror of https://github.com/home-assistant/core synced 2024-07-18 12:02:20 +02:00

Only sync when HA is started up as we already sync at startup (#72940)

This commit is contained in:
Paulus Schoutsen 2022-06-02 16:15:04 -07:00 committed by GitHub
parent a4c3585448
commit fbb08994f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,6 @@ class CloudGoogleConfig(AbstractConfig):
self._cur_entity_prefs = self._prefs.google_entity_configs
self._cur_default_expose = self._prefs.google_default_expose
self._sync_entities_lock = asyncio.Lock()
self._sync_on_started = False
@property
def enabled(self):
@ -224,7 +223,7 @@ class CloudGoogleConfig(AbstractConfig):
self._cur_entity_prefs = prefs.google_entity_configs
self._cur_default_expose = prefs.google_default_expose
if sync_entities:
if sync_entities and self.hass.is_running:
await self.async_sync_entities_all()
@callback