Fix typo SIGNAL_BOOTSTRAP_INTEGRATONS -> SIGNAL_BOOTSTRAP_INTEGRATIONS (#79970)

This commit is contained in:
Charles Garwood 2022-10-09 23:06:28 -04:00 committed by GitHub
parent aca340de1c
commit 58d531841b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 10 deletions

View File

@ -21,7 +21,7 @@ from .components import http, persistent_notification
from .const import ( from .const import (
REQUIRED_NEXT_PYTHON_HA_RELEASE, REQUIRED_NEXT_PYTHON_HA_RELEASE,
REQUIRED_NEXT_PYTHON_VER, REQUIRED_NEXT_PYTHON_VER,
SIGNAL_BOOTSTRAP_INTEGRATONS, SIGNAL_BOOTSTRAP_INTEGRATIONS,
) )
from .exceptions import HomeAssistantError from .exceptions import HomeAssistantError
from .helpers import ( from .helpers import (
@ -431,7 +431,7 @@ async def _async_watch_pending_setups(hass: core.HomeAssistant) -> None:
_LOGGER.debug("Integration remaining: %s", remaining_with_setup_started) _LOGGER.debug("Integration remaining: %s", remaining_with_setup_started)
if remaining_with_setup_started or not previous_was_empty: if remaining_with_setup_started or not previous_was_empty:
async_dispatcher_send( async_dispatcher_send(
hass, SIGNAL_BOOTSTRAP_INTEGRATONS, remaining_with_setup_started hass, SIGNAL_BOOTSTRAP_INTEGRATIONS, remaining_with_setup_started
) )
previous_was_empty = not remaining_with_setup_started previous_was_empty = not remaining_with_setup_started
await asyncio.sleep(SLOW_STARTUP_CHECK_INTERVAL) await asyncio.sleep(SLOW_STARTUP_CHECK_INTERVAL)
@ -622,7 +622,7 @@ async def _async_set_up_integrations(
_LOGGER.warning("Setup timed out for bootstrap - moving forward") _LOGGER.warning("Setup timed out for bootstrap - moving forward")
watch_task.cancel() watch_task.cancel()
async_dispatcher_send(hass, SIGNAL_BOOTSTRAP_INTEGRATONS, {}) async_dispatcher_send(hass, SIGNAL_BOOTSTRAP_INTEGRATIONS, {})
_LOGGER.debug( _LOGGER.debug(
"Integration setup times: %s", "Integration setup times: %s",

View File

@ -12,7 +12,7 @@ from homeassistant.auth.permissions.const import CAT_ENTITIES, POLICY_READ
from homeassistant.const import ( from homeassistant.const import (
EVENT_STATE_CHANGED, EVENT_STATE_CHANGED,
MATCH_ALL, MATCH_ALL,
SIGNAL_BOOTSTRAP_INTEGRATONS, SIGNAL_BOOTSTRAP_INTEGRATIONS,
) )
from homeassistant.core import Context, Event, HomeAssistant, State, callback from homeassistant.core import Context, Event, HomeAssistant, State, callback
from homeassistant.exceptions import ( from homeassistant.exceptions import (
@ -151,7 +151,7 @@ def handle_subscribe_bootstrap_integrations(
connection.send_message(messages.event_message(msg["id"], message)) connection.send_message(messages.event_message(msg["id"], message))
connection.subscriptions[msg["id"]] = async_dispatcher_connect( connection.subscriptions[msg["id"]] = async_dispatcher_connect(
hass, SIGNAL_BOOTSTRAP_INTEGRATONS, forward_bootstrap_integrations hass, SIGNAL_BOOTSTRAP_INTEGRATIONS, forward_bootstrap_integrations
) )
connection.send_result(msg["id"]) connection.send_result(msg["id"])

View File

@ -786,4 +786,4 @@ CAST_APP_ID_HOMEASSISTANT_LOVELACE: Final = "A078F6B0"
# User used by Supervisor # User used by Supervisor
HASSIO_USER_NAME = "Supervisor" HASSIO_USER_NAME = "Supervisor"
SIGNAL_BOOTSTRAP_INTEGRATONS = "bootstrap_integrations" SIGNAL_BOOTSTRAP_INTEGRATIONS = "bootstrap_integrations"

View File

@ -14,7 +14,7 @@ from homeassistant.components.websocket_api.auth import (
TYPE_AUTH_REQUIRED, TYPE_AUTH_REQUIRED,
) )
from homeassistant.components.websocket_api.const import FEATURE_COALESCE_MESSAGES, URL from homeassistant.components.websocket_api.const import FEATURE_COALESCE_MESSAGES, URL
from homeassistant.const import SIGNAL_BOOTSTRAP_INTEGRATONS from homeassistant.const import SIGNAL_BOOTSTRAP_INTEGRATIONS
from homeassistant.core import Context, HomeAssistant, State, callback from homeassistant.core import Context, HomeAssistant, State, callback
from homeassistant.exceptions import HomeAssistantError from homeassistant.exceptions import HomeAssistantError
from homeassistant.helpers import entity from homeassistant.helpers import entity
@ -1712,7 +1712,7 @@ async def test_subscribe_unsubscribe_bootstrap_integrations(
message = {"august": 12.5, "isy994": 12.8} message = {"august": 12.5, "isy994": 12.8}
async_dispatcher_send(hass, SIGNAL_BOOTSTRAP_INTEGRATONS, message) async_dispatcher_send(hass, SIGNAL_BOOTSTRAP_INTEGRATIONS, message)
msg = await websocket_client.receive_json() msg = await websocket_client.receive_json()
assert msg["id"] == 7 assert msg["id"] == 7
assert msg["type"] == "event" assert msg["type"] == "event"

View File

@ -9,7 +9,7 @@ import pytest
from homeassistant import bootstrap, core, runner from homeassistant import bootstrap, core, runner
import homeassistant.config as config_util import homeassistant.config as config_util
from homeassistant.const import SIGNAL_BOOTSTRAP_INTEGRATONS from homeassistant.const import SIGNAL_BOOTSTRAP_INTEGRATIONS
from homeassistant.exceptions import HomeAssistantError from homeassistant.exceptions import HomeAssistantError
from homeassistant.helpers.dispatcher import async_dispatcher_connect from homeassistant.helpers.dispatcher import async_dispatcher_connect
@ -748,7 +748,7 @@ async def test_empty_integrations_list_is_only_sent_at_the_end_of_bootstrap(hass
integrations.append(data) integrations.append(data)
async_dispatcher_connect( async_dispatcher_connect(
hass, SIGNAL_BOOTSTRAP_INTEGRATONS, _bootstrap_integrations hass, SIGNAL_BOOTSTRAP_INTEGRATIONS, _bootstrap_integrations
) )
with patch.object(bootstrap, "SLOW_STARTUP_CHECK_INTERVAL", 0.05): with patch.object(bootstrap, "SLOW_STARTUP_CHECK_INTERVAL", 0.05):
await bootstrap._async_set_up_integrations( await bootstrap._async_set_up_integrations(