1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Update bootstrap.py for grammar in slow startup error log (#157458)

This commit is contained in:
steaura
2025-11-28 18:34:30 +00:00
committed by GitHub
parent 8c8708d5bc
commit 3b94b2491a
2 changed files with 3 additions and 3 deletions

View File

@@ -1000,7 +1000,7 @@ class _WatchPendingSetups:
# We log every LOG_SLOW_STARTUP_INTERVAL until all integrations are done
# once we take over LOG_SLOW_STARTUP_INTERVAL (60s) to start up
_LOGGER.warning(
"Waiting on integrations to complete setup: %s",
"Waiting for integrations to complete setup: %s",
self._setup_started,
)

View File

@@ -727,7 +727,7 @@ async def test_setup_hass(
),
)
assert "Waiting on integrations to complete setup" not in caplog.text
assert "Waiting for integrations to complete setup" not in caplog.text
assert "browser" in hass.config.components
assert "recovery_mode" not in hass.config.components
@@ -790,7 +790,7 @@ async def test_setup_hass_takes_longer_than_log_slow_startup(
),
)
assert "Waiting on integrations to complete setup" in caplog.text
assert "Waiting for integrations to complete setup" in caplog.text
async def test_setup_hass_invalid_yaml(