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:
@@ -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,
|
||||
)
|
||||
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user