Skip to content

Instantly share code, notes, and snippets.

@mweinelt
Created July 13, 2021 00:38
Show Gist options
  • Select an option

  • Save mweinelt/9a915985f1a5259adcbf84bf96c3539a to your computer and use it in GitHub Desktop.

Select an option

Save mweinelt/9a915985f1a5259adcbf84bf96c3539a to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
============================= test session starts ==============================
platform linux -- Python 3.8.9, pytest-6.2.4, py-1.10.0, pluggy-0.13.1
rootdir: /build/source, configfile: pyproject.toml
plugins: aiohttp-0.3.0, mock-3.6.1, rerunfailures-10.1, xdist-2.3.0, forked-1.3.0, requests-mock-1.9.3, anyio-3.2.1
gw0 [1838] / gw1 [1838] / gw2 [1838] / gw3 [1838] / gw4 [1838] / gw5 [1838]
........................................................................ [ 3%]
........................................................................ [ 7%]
............................................F........................... [ 11%]
F.......F............F.................................................. [ 15%]
........................................................................ [ 19%]
........................................................................ [ 23%]
...........................E.....E....E................................. [ 27%]
........................................................................ [ 31%]
....................................................................F... [ 35%]
........................................................................ [ 39%]
........................................................................ [ 43%]
........................................................................ [ 47%]
........................................................................ [ 50%]
........................................................................ [ 54%]
........................................................................ [ 58%]
........................................................................ [ 62%]
........................................................................ [ 66%]
........................................................................ [ 70%]
........................................................................ [ 74%]
........................................................................ [ 78%]
........................................................................ [ 82%]
.................................FE..................................... [ 86%]
........................................................................ [ 90%]
........................................................................ [ 93%]
.....F.F....F..F.F..F..F...F..F.F...F...F.F..F...F...F....F....FF.....F. [ 97%]
F.......F..F........................... [100%]--- Logging error ---
Traceback (most recent call last):
File "/nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/lib/python3.8/logging/__init__.py", line 1088, in emit
stream.write(msg + self.terminator)
ValueError: I/O operation on closed file.
Call stack:
File "/nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/lib/python3.8/asyncio/base_events.py", line 1744, in call_exception_handler
self._exception_handler(self, context)
File "/build/source/tests/conftest.py", line 153, in exc_handle
orig_exception_handler(loop, context)
File "/build/source/homeassistant/runner.py", line 97, in _async_loop_exception_handler
logging.getLogger(__package__).error(
Message: 'Error doing job: %s'
Arguments: ('Task was destroyed but it is pending!',)
==================================== ERRORS ====================================
________________ ERROR collecting tests/helpers/test_network.py ________________
ImportError while importing test module '/build/source/tests/helpers/test_network.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/lib/python3.8/importlib/__init__.py:127: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
tests/helpers/test_network.py:6: in <module>
from homeassistant.components import cloud
homeassistant/components/cloud/__init__.py:5: in <module>
from homeassistant.components.alexa import const as alexa_const
homeassistant/components/alexa/__init__.py:13: in <module>
from . import flash_briefings, intent, smart_home_http
homeassistant/components/alexa/smart_home_http.py:9: in <module>
from .config import AbstractConfig
homeassistant/components/alexa/config.py:6: in <module>
from .state_report import async_enable_proactive_mode
homeassistant/components/alexa/state_report.py:17: in <module>
from .entities import ENTITY_ADAPTERS, AlexaEntity, generate_alexa_id
homeassistant/components/alexa/entities.py:7: in <module>
from homeassistant.components import (
homeassistant/components/camera/__init__.py:30: in <module>
from homeassistant.components.stream import Stream, create_stream
homeassistant/components/stream/__init__.py:46: in <module>
from .recorder import RecorderOutput
homeassistant/components/stream/recorder.py:10: in <module>
import av
E ModuleNotFoundError: No module named 'av'
__________ ERROR at setup of test_async_aiohttp_proxy_stream[pyloop] ___________
[gw1] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffede68580>
hass_client = <function hass_client.<locals>.auth_client at 0x7fffee13b550>
@pytest.fixture(name="camera_client")
def camera_client_fixture(hass, hass_client):
"""Fixture to fetch camera streams."""
> assert hass.loop.run_until_complete(
async_setup_component(
hass,
"camera",
{
"camera": {
"name": "config_test",
"platform": "mjpeg",
"mjpeg_url": "http://example.com/mjpeg_stream",
}
},
)
)
E AssertionError: assert False
E + where False = <bound method BaseEventLoop.run_until_complete of <_UnixSelectorEventLoop running=False closed=False debug=False>>(<coroutine object async_setup_component at 0x7fffed5a1040>)
E + where <bound method BaseEventLoop.run_until_complete of <_UnixSelectorEventLoop running=False closed=False debug=False>> = <_UnixSelectorEventLoop running=False closed=False debug=False>.run_until_complete
E + where <_UnixSelectorEventLoop running=False closed=False debug=False> = <homeassistant.core.HomeAssistant object at 0x7fffede68580>.loop
E + and <coroutine object async_setup_component at 0x7fffed5a1040> = async_setup_component(<homeassistant.core.HomeAssistant object at 0x7fffede68580>, 'camera', {'camera': {'mjpeg_url': 'http://example.com/mjpeg_stream', 'name': 'config_test', 'platform': 'mjpeg'}})
hass = <homeassistant.core.HomeAssistant object at 0x7fffede68580>
hass_client = <function hass_client.<locals>.auth_client at 0x7fffee13b550>
tests/helpers/test_aiohttp_client.py:16: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
INFO:homeassistant.loader:Loaded camera from homeassistant.components.camera
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
DEBUG:homeassistant.setup:Dependency camera will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
ERROR:homeassistant.setup:Setup failed for camera: Unable to import component: No module named 'av'
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
INFO homeassistant.loader:loader.py:349 Loaded camera from homeassistant.components.camera
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
DEBUG homeassistant.setup:setup.py:131 Dependency camera will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
ERROR homeassistant.setup:setup.py:173 Setup failed for camera: Unable to import component: No module named 'av'
______ ERROR at setup of test_async_aiohttp_proxy_stream_timeout[pyloop] _______
[gw1] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffedcfe370>
hass_client = <function hass_client.<locals>.auth_client at 0x7fffed57d4c0>
@pytest.fixture(name="camera_client")
def camera_client_fixture(hass, hass_client):
"""Fixture to fetch camera streams."""
> assert hass.loop.run_until_complete(
async_setup_component(
hass,
"camera",
{
"camera": {
"name": "config_test",
"platform": "mjpeg",
"mjpeg_url": "http://example.com/mjpeg_stream",
}
},
)
)
E AssertionError: assert False
E + where False = <bound method BaseEventLoop.run_until_complete of <_UnixSelectorEventLoop running=False closed=False debug=False>>(<coroutine object async_setup_component at 0x7fffed9a23c0>)
E + where <bound method BaseEventLoop.run_until_complete of <_UnixSelectorEventLoop running=False closed=False debug=False>> = <_UnixSelectorEventLoop running=False closed=False debug=False>.run_until_complete
E + where <_UnixSelectorEventLoop running=False closed=False debug=False> = <homeassistant.core.HomeAssistant object at 0x7fffedcfe370>.loop
E + and <coroutine object async_setup_component at 0x7fffed9a23c0> = async_setup_component(<homeassistant.core.HomeAssistant object at 0x7fffedcfe370>, 'camera', {'camera': {'mjpeg_url': 'http://example.com/mjpeg_stream', 'name': 'config_test', 'platform': 'mjpeg'}})
hass = <homeassistant.core.HomeAssistant object at 0x7fffedcfe370>
hass_client = <function hass_client.<locals>.auth_client at 0x7fffed57d4c0>
tests/helpers/test_aiohttp_client.py:16: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
INFO:homeassistant.loader:Loaded camera from homeassistant.components.camera
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
DEBUG:homeassistant.setup:Dependency camera will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
ERROR:homeassistant.setup:Setup failed for camera: Unable to import component: No module named 'av'
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
INFO homeassistant.loader:loader.py:349 Loaded camera from homeassistant.components.camera
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
DEBUG homeassistant.setup:setup.py:131 Dependency camera will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
ERROR homeassistant.setup:setup.py:173 Setup failed for camera: Unable to import component: No module named 'av'
_____ ERROR at setup of test_async_aiohttp_proxy_stream_client_err[pyloop] _____
[gw1] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffedd02fa0>
hass_client = <function hass_client.<locals>.auth_client at 0x7fffedd32a60>
@pytest.fixture(name="camera_client")
def camera_client_fixture(hass, hass_client):
"""Fixture to fetch camera streams."""
> assert hass.loop.run_until_complete(
async_setup_component(
hass,
"camera",
{
"camera": {
"name": "config_test",
"platform": "mjpeg",
"mjpeg_url": "http://example.com/mjpeg_stream",
}
},
)
)
E AssertionError: assert False
E + where False = <bound method BaseEventLoop.run_until_complete of <_UnixSelectorEventLoop running=False closed=False debug=False>>(<coroutine object async_setup_component at 0x7fffee1120c0>)
E + where <bound method BaseEventLoop.run_until_complete of <_UnixSelectorEventLoop running=False closed=False debug=False>> = <_UnixSelectorEventLoop running=False closed=False debug=False>.run_until_complete
E + where <_UnixSelectorEventLoop running=False closed=False debug=False> = <homeassistant.core.HomeAssistant object at 0x7fffedd02fa0>.loop
E + and <coroutine object async_setup_component at 0x7fffee1120c0> = async_setup_component(<homeassistant.core.HomeAssistant object at 0x7fffedd02fa0>, 'camera', {'camera': {'mjpeg_url': 'http://example.com/mjpeg_stream', 'name': 'config_test', 'platform': 'mjpeg'}})
hass = <homeassistant.core.HomeAssistant object at 0x7fffedd02fa0>
hass_client = <function hass_client.<locals>.auth_client at 0x7fffedd32a60>
tests/helpers/test_aiohttp_client.py:16: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
INFO:homeassistant.loader:Loaded camera from homeassistant.components.camera
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
DEBUG:homeassistant.setup:Dependency camera will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
ERROR:homeassistant.setup:Setup failed for camera: Unable to import component: No module named 'av'
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
INFO homeassistant.loader:loader.py:349 Loaded camera from homeassistant.components.camera
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
DEBUG homeassistant.setup:setup.py:131 Dependency camera will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
ERROR homeassistant.setup:setup.py:173 Setup failed for camera: Unable to import component: No module named 'av'
___________________ ERROR at teardown of test_setup[pyloop] ____________________
[gw5] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
loop = <_UnixSelectorEventLoop running=False closed=True debug=False>
load_registries = True
hass_storage = {'core.entity_registry': {'data': {'entities': [{'area_id': None, 'capabilities': None, 'config_entry_id': None, 'devi....io'], 'ip_ban_enabled': True, 'login_attempts_threshold': -1, 'server_port': 8123, ...}, 'key': 'http', 'version': 1}}
request = <SubRequest 'hass' for <Function test_setup[pyloop]>>
@pytest.fixture
def hass(loop, load_registries, hass_storage, request):
"""Fixture to provide a test instance of Home Assistant."""
def exc_handle(loop, context):
"""Handle exceptions by rethrowing them, which will fail the test."""
# Most of these contexts will contain an exception, but not all.
# The docs note the key as "optional"
# See https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.loop.call_exception_handler
if "exception" in context:
exceptions.append(context["exception"])
else:
exceptions.append(
Exception(
"Received exception handler without exception, but with message: %s"
% context["message"]
)
)
orig_exception_handler(loop, context)
exceptions = []
hass = loop.run_until_complete(async_test_home_assistant(loop, load_registries))
orig_exception_handler = loop.get_exception_handler()
loop.set_exception_handler(exc_handle)
yield hass
loop.run_until_complete(hass.async_stop(force=True))
for ex in exceptions:
if (
request.module.__name__,
request.function.__name__,
) in IGNORE_UNCAUGHT_EXCEPTIONS:
continue
if isinstance(ex, ServiceNotFound):
continue
> raise ex
ex = OSError(19, 'No such device')
exc_handle = <function hass.<locals>.exc_handle at 0x7fffef79fa60>
exceptions = [OSError(19, 'No such device'), AssertionError(), ServiceNotFound(ServiceNotFound(...), 'Service persistent_notificati...fication.create not found'), ServiceNotFound(ServiceNotFound(...), 'Service persistent_notification.create not found')]
hass = <homeassistant.core.HomeAssistant object at 0x7fffee071c40>
hass_storage = {'core.entity_registry': {'data': {'entities': [{'area_id': None, 'capabilities': None, 'config_entry_id': None, 'devi....io'], 'ip_ban_enabled': True, 'login_attempts_threshold': -1, 'server_port': 8123, ...}, 'key': 'http', 'version': 1}}
load_registries = True
loop = <_UnixSelectorEventLoop running=False closed=True debug=False>
orig_exception_handler = <function _async_loop_exception_handler at 0x7ffff46a45e0>
request = <SubRequest 'hass' for <Function test_setup[pyloop]>>
tests/conftest.py:171:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
homeassistant/components/ssdp/__init__.py:244: in async_start
await asyncio.gather(
self = <homeassistant.components.ssdp.Scanner object at 0x7fffe4c047f0>
source_ip = IPv4Address('0.0.0.0')
/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/search.py:91: in async_start
sock, source, self._target = get_ssdp_socket(self.source_ip, self.target_ip)
self = <async_upnp_client.search.SSDPListener object at 0x7fffe4c04820>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
source_ip = IPv4Address('0.0.0.0'), target_ip = IPv4Address('239.255.255.250')
def get_ssdp_socket(
source_ip: IPvXAddress, target_ip: IPvXAddress
) -> Tuple[socket.socket, AddressTupleVXType, AddressTupleVXType]:
"""Create a socket to listen on."""
target = socket.getaddrinfo(
str(target_ip), SSDP_PORT, type=socket.SOCK_DGRAM, proto=socket.IPPROTO_UDP
)[0]
source = socket.getaddrinfo(
str(source_ip), 0, type=socket.SOCK_DGRAM, proto=socket.IPPROTO_UDP
)[0]
_LOGGER.debug("Creating socket on %s to %s", source, target)
# create socket
sock = socket.socket(source[0], source[1], source[2])
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
# multicast
if target_ip.is_multicast:
if source[0] == socket.AF_INET6:
sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_MULTICAST_HOPS, 2)
addr = cast(AddressTupleV6Type, source[4])
if addr[3]:
mreq = target_ip.packed + addr[3].to_bytes(4, sys.byteorder)
sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_JOIN_GROUP, mreq)
sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_MULTICAST_IF, addr[3])
else:
_LOGGER.debug("Skipping setting multicast interface")
else:
sock.setsockopt(socket.SOL_IP, socket.IP_MULTICAST_IF, source_ip.packed)
sock.setsockopt(socket.IPPROTO_IP, socket.IP_MULTICAST_TTL, 2)
> sock.setsockopt(
socket.IPPROTO_IP,
socket.IP_ADD_MEMBERSHIP,
target_ip.packed + source_ip.packed,
)
E OSError: [Errno 19] No such device
sock = <socket.socket fd=20, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=17, laddr=('0.0.0.0', 0)>
source = (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('0.0.0.0', 0))
source_ip = IPv4Address('0.0.0.0')
target = (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('239.255.255.250', 1900))
target_ip = IPv4Address('239.255.255.250')
/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/ssdp.py:228: OSError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded default_config from homeassistant.components.default_config
INFO:homeassistant.loader:Loaded automation from homeassistant.components.automation
INFO:homeassistant.loader:Loaded blueprint from homeassistant.components.blueprint
INFO:homeassistant.loader:Loaded trace from homeassistant.components.trace
INFO:homeassistant.loader:Loaded cloud from homeassistant.components.cloud
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded webhook from homeassistant.components.webhook
INFO:homeassistant.loader:Loaded counter from homeassistant.components.counter
INFO:homeassistant.loader:Loaded dhcp from homeassistant.components.dhcp
INFO:homeassistant.loader:Loaded frontend from homeassistant.components.frontend
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
INFO:homeassistant.loader:Loaded auth from homeassistant.components.auth
INFO:homeassistant.loader:Loaded config from homeassistant.components.config
INFO:homeassistant.loader:Loaded device_automation from homeassistant.components.device_automation
INFO:homeassistant.loader:Loaded lovelace from homeassistant.components.lovelace
INFO:homeassistant.loader:Loaded onboarding from homeassistant.components.onboarding
INFO:homeassistant.loader:Loaded analytics from homeassistant.components.analytics
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded person from homeassistant.components.person
INFO:homeassistant.loader:Loaded image from homeassistant.components.image
INFO:homeassistant.loader:Loaded search from homeassistant.components.search
INFO:homeassistant.loader:Loaded system_log from homeassistant.components.system_log
INFO:homeassistant.loader:Loaded history from homeassistant.components.history
INFO:homeassistant.loader:Loaded recorder from homeassistant.components.recorder
INFO:homeassistant.loader:Loaded input_boolean from homeassistant.components.input_boolean
INFO:homeassistant.loader:Loaded input_datetime from homeassistant.components.input_datetime
INFO:homeassistant.loader:Loaded input_number from homeassistant.components.input_number
INFO:homeassistant.loader:Loaded input_select from homeassistant.components.input_select
INFO:homeassistant.loader:Loaded input_text from homeassistant.components.input_text
INFO:homeassistant.loader:Loaded logbook from homeassistant.components.logbook
INFO:homeassistant.loader:Loaded map from homeassistant.components.map
INFO:homeassistant.loader:Loaded media_source from homeassistant.components.media_source
INFO:homeassistant.loader:Loaded mobile_app from homeassistant.components.mobile_app
INFO:homeassistant.loader:Loaded tag from homeassistant.components.tag
INFO:homeassistant.loader:Loaded my from homeassistant.components.my
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded scene from homeassistant.components.scene
INFO:homeassistant.loader:Loaded script from homeassistant.components.script
INFO:homeassistant.loader:Loaded ssdp from homeassistant.components.ssdp
INFO:homeassistant.loader:Loaded sun from homeassistant.components.sun
INFO:homeassistant.loader:Loaded system_health from homeassistant.components.system_health
INFO:homeassistant.loader:Loaded timer from homeassistant.components.timer
INFO:homeassistant.loader:Loaded updater from homeassistant.components.updater
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded zone from homeassistant.components.zone
DEBUG:homeassistant.setup:Dependency default_config will wait for dependencies ['automation', 'cloud', 'counter', 'dhcp', 'frontend', 'history', 'input_boolean', 'input_datetime', 'input_number', 'input_select', 'input_text', 'logbook', 'map', 'media_source', 'mobile_app', 'my', 'network', 'person', 'scene', 'script', 'ssdp', 'sun', 'system_health', 'tag', 'timer', 'updater', 'webhook', 'zeroconf', 'zone']
DEBUG:homeassistant.setup:Dependency automation will wait for dependencies ['blueprint', 'trace']
DEBUG:homeassistant.setup:Dependency cloud will wait for dependencies ['http', 'webhook']
INFO:homeassistant.setup:Setting up counter
DEBUG:matplotlib:matplotlib data path: /nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data
DEBUG:matplotlib:CONFIGDIR=/build/.config/matplotlib
DEBUG:matplotlib:matplotlib version 3.4.2
DEBUG:matplotlib:interactive is False
DEBUG:matplotlib:platform is linux
DEBUG:matplotlib:loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_warnings', '_frozen_importlib_external', '_io', 'marshal', 'posix', '_thread', '_weakref', 'time', 'zipimport', '_codecs', 'codecs', 'encodings.aliases', 'encodings', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', '_abc', 'abc', 'io', '_stat', 'stat', '_collections_abc', 'genericpath', 'posixpath', 'os.path', 'os', '_sitebuiltins', '_operator', 'operator', 'keyword', '_heapq', 'heapq', 'itertools', 'reprlib', '_collections', 'collections', '_functools', 'functools', 'sitecustomize', 'site', 'execnet._version', 'execnet.deprecated', '__future__', '_struct', 'struct', 'types', 'enum', '_sre', 'sre_constants', 'sre_parse', 'sre_compile', '_locale', 'copyreg', 're', 'token', 'tokenize', 'linecache', 'traceback', '_weakrefset', 'weakref', 'execnet.gateway_base', '_opcode', 'opcode', 'dis', 'collections.abc', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib', 'importlib.machinery', 'inspect', 'textwrap', 'execnet.gateway', 'execnet.gateway_bootstrap', 'atexit', 'threading', 'shlex', 'execnet.gateway_io', 'execnet.xspec', 'execnet.multi', '_hashlib', '_blake2', '_sha3', 'hashlib', '_queue', 'queue', 'execnet.rsync_remote', 'execnet.rsync', 'execnet', '_bootlocale', 'errno', 'py.error', 'py._error', 'py._vendored_packages', 'py._vendored_packages.apipkg.version', 'py._vendored_packages.apipkg', 'py._version', 'py.test', 'py.process', 'py.apipkg', 'py.iniconfig', 'py.path', 'py.code', 'py.builtin', 'py.io', 'py.xml', 'py.log', 'py', 'contextlib', 'typing.io', 'typing.re', 'typing', '_pytest._version', '_pytest', 'platform', 'attr._compat', 'copy', 'signal', '_posixsubprocess', 'select', 'math', 'selectors', 'subprocess', 'uuid', 'attr._config', 'attr.exceptions', 'attr.setters', 'attr._make', 'attr.converters', 'attr.filters', 'attr.validators', 'attr._cmp', 'attr._funcs', 'attr._version_info', 'attr._next_gen', 'attr', 'fnmatch', 'ntpath', 'urllib', 'urllib.parse', 'pathlib', '_pytest.outcomes', '_csv', 'csv', 'email', 'binascii', 'importlib.abc', 'importlib.util', 'zlib', '_compression', '_bz2', 'bz2', '_lzma', 'lzma', 'pwd', 'grp', 'shutil', 'zipfile', 'configparser', 'importlib.metadata', '_pytest.compat', '_pytest.warning_types', '_pytest.deprecated', 'pytest.collect', '_ast', 'ast', 'unicodedata', '_pytest._io.wcwidth', '_pytest._io.terminalwriter', '_pytest._io', 'pprint', '_pytest._io.saferepr', 'pluggy._version', 'pluggy._tracing', 'pluggy.callers', 'pluggy.hooks', 'pluggy.manager', 'pluggy', '_bisect', 'bisect', '_pytest._code.source', 'py._path', 'py._path.common', 'py._path.local', '_pytest._code.code', '_pytest._code', '_pytest.assertion.util', 'locale', 'gettext', 'argparse', '_pytest.hookspec', '_pytest.config.exceptions', 'iniconfig', '_pytest.pathlib', '_pytest.config.findpaths', '_pytest.store', '_pytest.config', '_pytest.mark.expression', '_pytest.mark.structures', '_pytest.config.argparsing', '_pytest.mark', '_pytest.nodes', '_pytest.fixtures', '_pytest.reports', 'bdb', '_pytest.timing', '_pytest.runner', '_pytest.main', '_pytest.assertion.rewrite', '_pytest.assertion.truncate', '_pytest.assertion', '_json', 'json.scanner', 'json.decoder', 'json.encoder', 'json', '_pytest.python', '_pytest.cacheprovider', '_sha512', '_random', 'random', 'tempfile', '_pytest.capture', '_pytest.debugging', '_pytest.freeze_support', '_string', 'string', 'logging', '_datetime', 'datetime', '_pytest.terminal', '_pytest.logging', '_pytest.monkeypatch', 'gc', '_pytest.tmpdir', '_pytest.pytester', 'numbers', '_decimal', 'decimal', '_pytest.python_api', '_pytest.recwarn', 'pytest', '_pytest.helpconfig', '_pytest.skipping', '_pytest.unittest', '_pytest.pastebin', '_pytest.nose', 'xml', 'xml.etree', 'xml.etree.ElementPath', 'pyexpat.errors', 'pyexpat.model', 'pyexpat', '_pytest.junitxml', '_pytest.doctest', '_pytest.setuponly', '_pytest.setupplan', '_pytest.stepwise', '_pytest.warnings', '_pytest.unraisableexception', '_pytest.threadexception', '_pytest.faulthandler', 'glob', '_pytest._argcomplete', 'toml.tz', 'toml.decoder', 'toml.encoder', 'toml', 'multidict._abc', 'multidict._multidict_base', 'multidict._multidict', 'multidict._compat', 'multidict', 'aiohttp.hdrs', 'concurrent', 'concurrent.futures._base', 'concurrent.futures', '_socket', 'socket', '_ssl', 'base64', 'ssl', 'asyncio.constants', 'asyncio.format_helpers', 'asyncio.base_futures', 'asyncio.log', 'asyncio.coroutines', '_contextvars', 'contextvars', 'asyncio.exceptions', 'asyncio.base_tasks', '_asyncio', 'asyncio.events', 'asyncio.futures', 'asyncio.protocols', 'asyncio.transports', 'asyncio.sslproto', 'asyncio.locks', 'asyncio.tasks', 'asyncio.staggered', 'asyncio.trsock', 'asyncio.base_events', 'asyncio.runners', 'asyncio.queues', 'asyncio.streams', 'asyncio.subprocess', 'asyncio.base_subprocess', 'asyncio.selector_events', 'asyncio.unix_events', 'asyncio', 'ipaddress', 'idna.package_data', 'idna.idnadata', 'idna.intranges', 'idna.core', 'idna', 'cython_runtime', 'yarl._quoting_c', 'yarl._quoting', 'yarl._url', 'yarl', 'http', 'calendar', 'email._parseaddr', 'email.base64mime', 'email.quoprimime', 'email.errors', 'quopri', 'email.encoders', 'email.charset', 'email.utils', 'html.entities', 'html', 'email.header', 'email._policybase', 'email.feedparser', 'email.parser', 'uu', 'email._encoded_words', 'email.iterators', 'email.message', 'http.client', 'mimetypes', 'socketserver', 'http.server', 'aiohttp.typedefs', 'aiohttp.http_exceptions', 'aiohttp.tcp_helpers', 'aiohttp.base_protocol', 'cgi', 'netrc', 'urllib.response', 'urllib.error', 'urllib.request', 'async_timeout', 'typing_extensions', 'aiohttp.log', 'aiohttp._helpers', 'aiohttp.helpers', 'http.cookies', 'aiohttp.abc', 'aiohttp._http_writer', 'aiohttp.http_writer', 'aiohttp.streams', '_brotli', 'brotli', '_cython_0_29_21', 'aiohttp._http_parser', 'aiohttp.http_parser', 'aiohttp._websocket', 'aiohttp.http_websocket', 'aiohttp.http', 'aiohttp.payload', 'aiohttp.client_exceptions', 'aiohttp.multipart', 'aiohttp.formdata', 'chardet.enums', 'chardet.charsetprober', 'chardet.charsetgroupprober', 'chardet.codingstatemachine', 'chardet.escsm', 'chardet.escprober', 'chardet.latin1prober', 'chardet.mbcssm', 'chardet.utf8prober', 'chardet.mbcharsetprober', 'chardet.euctwfreq', 'chardet.euckrfreq', 'chardet.gb2312freq', 'chardet.big5freq', 'chardet.jisfreq', 'chardet.chardistribution', 'chardet.jpcntx', 'chardet.sjisprober', 'chardet.eucjpprober', 'chardet.gb2312prober', 'chardet.euckrprober', 'chardet.cp949prober', 'chardet.big5prober', 'chardet.euctwprober', 'chardet.mbcsgroupprober', 'chardet.hebrewprober', 'chardet.sbcharsetprober', 'chardet.langbulgarianmodel', 'chardet.langgreekmodel', 'chardet.langhebrewmodel', 'chardet.langrussianmodel', 'chardet.langthaimodel', 'chardet.langturkishmodel', 'chardet.sbcsgroupprober', 'chardet.universaldetector', 'chardet.version', 'chardet', 'aiohttp.client_reqrep', 'aiohttp.client_ws', 'aiohttp.client_proto', 'aiohttp.locks', 'aiohttp.resolver', 'aiohttp.connector', '_compat_pickle', '_pickle', 'pickle', 'aiohttp.cookiejar', 'aiohttp._frozenlist', 'aiohttp.frozenlist', 'aiohttp.signals', 'aiohttp.tracing', 'aiohttp.client', 'aiohttp.payload_streamer', 'aiohttp', 'aiohttp.web_response', 'aiohttp.web_exceptions', 'aiohttp.web_request', 'aiohttp.web_log', 'aiohttp.web_fileresponse', 'aiohttp.web_routedef', 'aiohttp.web_urldispatcher', 'aiohttp.web_middlewares', 'aiohttp.web_protocol', 'aiohttp.web_server', 'aiohttp.web_app', 'aiohttp.web_runner', 'aiohttp.web_ws', 'aiohttp.web', 'unittest.util', 'unittest.result', 'difflib', 'unittest.case', 'unittest.async_case', 'unittest.suite', 'unittest.loader', 'unittest.signals', 'unittest.runner', 'unittest.main', 'unittest', 'unittest.mock', 'aiohttp.test_utils', 'aiohttp.pytest_plugin', 'pytest_aiohttp', 'pytest_mock._util', 'pytest_mock.plugin', 'pytest_mock', 'pkgutil', 'xml.parsers', 'xml.parsers.expat.model', 'xml.parsers.expat.errors', 'xml.parsers.expat', 'plistlib', 'pkg_resources.extern', 'pkg_resources._vendor', 'pkg_resources._vendor.appdirs', 'pkg_resources.extern.appdirs', 'pkg_resources._vendor.packaging.__about__', 'pkg_resources._vendor.packaging', 'pkg_resources.extern.packaging', 'pkg_resources.extern.packaging._structures', 'pkg_resources.extern.packaging._typing', 'pkg_resources.extern.packaging.version', 'pkg_resources.extern.packaging._compat', 'pkg_resources.extern.packaging.utils', 'pkg_resources.extern.packaging.specifiers', 'pkg_resources._vendor.pyparsing', 'pkg_resources.extern.pyparsing', 'pkg_resources.extern.packaging.markers', 'pkg_resources.extern.packaging.requirements', 'sysconfig', 'pkg_resources', 'pytest_rerunfailures', 'xdist.plugin', 'xdist._version', 'xdist', 'xdist.newhooks', 'xdist.looponfail', 'pytest_forked', 'urllib3.packages.ssl_match_hostname', 'urllib3.packages', 'urllib3.packages.six', 'urllib3.packages.six.moves', 'urllib3.packages.six.moves.http_client', 'urllib3.exceptions', 'urllib3._version', 'urllib3.contrib', 'urllib3.contrib._appengine_environ', 'urllib3.util.wait', 'urllib3.util.connection', 'urllib3.util.request', 'urllib3.util.response', 'urllib3.util.retry', 'hmac', 'urllib3.util.url', 'urllib3.util.ssltransport', 'urllib3.util.ssl_', 'urllib3.util.timeout', 'urllib3.util', 'urllib3.util.proxy', 'urllib3._collections', 'urllib3.connection', 'urllib3.fields', 'urllib3.filepost', 'urllib3.packages.six.moves.urllib', 'urllib3.packages.six.moves.urllib.parse', 'urllib3.request', 'urllib3.response', 'urllib3.util.queue', 'urllib3.connectionpool', 'urllib3.poolmanager', 'urllib3', 'requests.exceptions', 'requests.__version__', 'importlib.resources', 'certifi.core', 'certifi', 'requests.certs', 'simplejson.errors', 'simplejson.raw_json', 'simplejson.compat', 'simplejson._speedups', 'simplejson.scanner', 'simplejson.decoder', 'simplejson.encoder', 'simplejson', 'http.cookiejar', 'requests.compat', 'requests._internal_utils', 'requests.cookies', 'requests.structures', 'requests.utils', 'requests.packages.urllib3.packages.ssl_match_hostname', 'requests.packages.urllib3.packages', 'requests.packages.urllib3.packages.six', 'requests.packages.urllib3.packages.six.moves', 'requests.packages.urllib3.packages.six.moves.http_client', 'requests.packages.urllib3.exceptions', 'requests.packages.urllib3._version', 'requests.packages.urllib3.contrib', 'requests.packages.urllib3.contrib._appengine_environ', 'requests.packages.urllib3.util.wait', 'requests.packages.urllib3.util.connection', 'requests.packages.urllib3.util.request', 'requests.packages.urllib3.util.response', 'requests.packages.urllib3.util.retry', 'requests.packages.urllib3.util.url', 'requests.packages.urllib3.util.ssltransport', 'requests.packages.urllib3.util.ssl_', 'requests.packages.urllib3.util.timeout', 'requests.packages.urllib3.util', 'requests.packages.urllib3.util.proxy', 'requests.packages.urllib3._collections', 'requests.packages.urllib3.connection', 'requests.packages.urllib3.fields', 'requests.packages.urllib3.filepost', 'requests.packages.urllib3.packages.six.moves.urllib', 'requests.packages.urllib3.packages.six.moves.urllib.parse', 'requests.packages.urllib3.request', 'requests.packages.urllib3.response', 'requests.packages.urllib3.util.queue', 'requests.packages.urllib3.connectionpool', 'requests.packages.urllib3.poolmanager', 'requests.packages.urllib3', 'requests.packages.idna.package_data', 'requests.packages.idna.idnadata', 'requests.packages.idna.intranges', 'requests.packages.idna.core', 'requests.packages.idna', 'requests.packages.chardet.enums', 'requests.packages.chardet.charsetprober', 'requests.packages.chardet.charsetgroupprober', 'requests.packages.chardet.codingstatemachine', 'requests.packages.chardet.escsm', 'requests.packages.chardet.escprober', 'requests.packages.chardet.latin1prober', 'requests.packages.chardet.mbcssm', 'requests.packages.chardet.utf8prober', 'requests.packages.chardet.mbcharsetprober', 'requests.packages.chardet.euctwfreq', 'requests.packages.chardet.euckrfreq', 'requests.packages.chardet.gb2312freq', 'requests.packages.chardet.big5freq', 'requests.packages.chardet.jisfreq', 'requests.packages.chardet.chardistribution', 'requests.packages.chardet.jpcntx', 'requests.packages.chardet.sjisprober', 'requests.packages.chardet.eucjpprober', 'requests.packages.chardet.gb2312prober', 'requests.packages.chardet.euckrprober', 'requests.packages.chardet.cp949prober', 'requests.packages.chardet.big5prober', 'requests.packages.chardet.euctwprober', 'requests.packages.chardet.mbcsgroupprober', 'requests.packages.chardet.hebrewprober', 'requests.packages.chardet.sbcharsetprober', 'requests.packages.chardet.langbulgarianmodel', 'requests.packages.chardet.langgreekmodel', 'requests.packages.chardet.langhebrewmodel', 'requests.packages.chardet.langrussianmodel', 'requests.packages.chardet.langthaimodel', 'requests.packages.chardet.langturkishmodel', 'requests.packages.chardet.sbcsgroupprober', 'requests.packages.chardet.universaldetector', 'requests.packages.chardet.version', 'requests.packages.chardet', 'requests.packages', 'stringprep', 'encodings.idna', 'requests.hooks', 'requests.auth', 'requests.status_codes', 'requests.models', 'socks', 'urllib3.contrib.socks', 'requests.adapters', 'requests.sessions', 'requests.api', 'requests', 'six', 'six.moves', 'six.moves.urllib', 'requests_mock.exceptions', 'requests_mock.request', 'requests_mock.compat', 'requests_mock.response', 'requests_mock.adapter', 'requests_mock.mocker', 'requests_mock', 'requests_mock.contrib', 'distutils', 'distutils.version', 'requests_mock.contrib._pytest_plugin', 'anyio._core', 'anyio._core._compat', 'sniffio._version', 'sniffio._impl', 'sniffio', 'anyio._core._eventloop', 'anyio._core._exceptions', 'anyio.abc._resources', 'anyio._core._typedattr', 'anyio.abc._tasks', 'anyio.abc._streams', 'anyio.abc._sockets', 'anyio.abc._subprocesses', 'anyio.abc._testing', 'dataclasses', 'anyio.lowlevel', 'anyio._core._tasks', 'anyio._core._testing', 'anyio._core._synchronization', 'concurrent.futures.thread', 'anyio.from_thread', 'anyio.abc', 'anyio.to_thread', 'anyio._core._fileio', 'anyio._core._resources', 'anyio._core._signals', 'anyio.streams', 'anyio.streams.stapled', 'anyio.streams.tls', 'anyio._core._sockets', 'anyio.streams.memory', 'anyio._core._streams', 'anyio._core._subprocesses', 'anyio', 'anyio.pytest_plugin', 'tests', 'homeassistant', 'voluptuous.error', 'voluptuous.schema_builder', 'voluptuous.validators', 'voluptuous.util', 'voluptuous', 'slugify.special', 'text_unidecode', 'slugify.slugify', 'slugify', 'homeassistant.const', 'homeassistant.helpers', 'homeassistant.exceptions', 'homeassistant.helpers.frame', 'homeassistant.helpers.deprecation', 'ciso8601', 'backports', 'backports.zoneinfo._tzpath', 'backports.zoneinfo._common', 'backports.zoneinfo._version', 'backports.zoneinfo._czoneinfo', 'backports.zoneinfo', 'homeassistant.util.dt', 'homeassistant.util', 'homeassistant.util.async_', 'homeassistant.block_async_io', 'awesomeversion.exceptions', 'awesomeversion.comparehandlers', 'awesomeversion.strategy', 'awesomeversion.comparehandlers.base', 'awesomeversion.comparehandlers.container', 'awesomeversion.match', 'awesomeversion.comparehandlers.sections', 'awesomeversion.comparehandlers.devrc', 'awesomeversion.comparehandlers.modifier', 'awesomeversion.comparehandlers.simple', 'awesomeversion.handlers', 'awesomeversion.awesomeversion', 'awesomeversion', 'homeassistant.generated', 'homeassistant.generated.dhcp', 'homeassistant.generated.mqtt', 'homeassistant.generated.ssdp', 'homeassistant.generated.zeroconf', 'homeassistant.loader', 'homeassistant.util.location', 'homeassistant.util.timeout', 'homeassistant.util.distance', 'homeassistant.util.pressure', 'homeassistant.util.temperature', 'homeassistant.util.volume', 'homeassistant.util.unit_system', 'homeassistant.util.uuid', 'homeassistant.core', 'logging.handlers', 'voluptuous.humanize', 'jwt.compat', 'jwt.exceptions', 'cryptography.__about__', 'cryptography', 'cryptography.hazmat', 'cryptography.hazmat.primitives', 'cryptography.hazmat.primitives.asymmetric', 'cryptography.utils', 'cryptography.hazmat._der', 'cryptography.exceptions', 'cryptography.hazmat.backends', 'cryptography.hazmat.backends.interfaces', 'cryptography.hazmat.primitives.hashes', 'cryptography.hazmat.primitives.asymmetric.utils', 'jwt.utils', 'cryptography.hazmat.primitives._serialization', 'cryptography.hazmat.primitives.asymmetric.dsa', 'cryptography.hazmat._oid', 'cryptography.hazmat.primitives.asymmetric.ec', 'cryptography.hazmat.primitives.asymmetric.ed25519', 'cryptography.hazmat.primitives.asymmetric.ed448', 'cryptography.hazmat.primitives._asymmetric', 'cryptography.hazmat.primitives.asymmetric.rsa', 'cryptography.hazmat._types', 'cryptography.hazmat.primitives.asymmetric.dh', 'cryptography.hazmat.primitives.serialization.base', 'cryptography.hazmat.primitives._cipheralgorithm', 'cryptography.hazmat.primitives.ciphers.modes', 'cryptography.hazmat.primitives.ciphers.base', 'cryptography.hazmat.primitives.ciphers', 'cryptography.hazmat.primitives.ciphers.algorithms', '_cffi_backend', '_bcrypt.lib', '_bcrypt', 'bcrypt._bcrypt', 'bcrypt.__about__', 'bcrypt', 'cryptography.hazmat.primitives.serialization.ssh', 'cryptography.hazmat.primitives.serialization', 'cryptography.hazmat.primitives.asymmetric.padding', 'jwt.algorithms', 'jwt.api_jws', 'jwt.api_jwt', 'jwt', 'homeassistant.data_entry_flow', 'homeassistant.auth.const', 'secrets', 'homeassistant.auth.permissions.const', 'homeassistant.auth.permissions.models', 'homeassistant.auth.permissions.types', 'homeassistant.auth.permissions.util', 'homeassistant.auth.permissions.entities', 'homeassistant.auth.permissions.merge', 'homeassistant.auth.permissions', 'homeassistant.auth.models', 'homeassistant.auth.permissions.system_policies', 'homeassistant.auth.auth_store', 'homeassistant.helpers.typing', 'homeassistant.util.package', 'homeassistant.requirements', 'homeassistant.util.decorator', 'homeassistant.auth.mfa_modules', 'homeassistant.auth.providers', 'homeassistant.auth', 'voluptuous_serialize', 'jinja2.bccache', 'markupsafe._speedups', 'markupsafe', 'jinja2.utils', 'jinja2.nodes', 'jinja2.exceptions', 'jinja2.visitor', 'jinja2.idtracking', 'jinja2.optimizer', 'jinja2.compiler', 'jinja2.async_utils', 'jinja2.runtime', 'jinja2.filters', 'jinja2.tests', 'jinja2.defaults', 'jinja2._identifier', 'jinja2.lexer', 'jinja2.parser', 'jinja2.environment', 'jinja2.loaders', 'jinja2', 'jinja2.sandbox', 'homeassistant.helpers.debounce', 'homeassistant.helpers.device_registry', 'homeassistant.util.yaml.const', 'yaml.error', 'yaml.tokens', 'yaml.events', 'yaml.nodes', 'yaml.reader', 'yaml.scanner', 'yaml.parser', 'yaml.composer', 'yaml.constructor', 'yaml.resolver', 'yaml.loader', 'yaml.emitter', 'yaml.serializer', 'yaml.representer', 'yaml.dumper', 'yaml._yaml', 'yaml.cyaml', 'yaml', 'homeassistant.util.yaml.objects', 'homeassistant.util.yaml.dumper', 'homeassistant.util.yaml.input', 'homeassistant.util.yaml.loader', 'homeassistant.util.yaml', 'homeassistant.helpers.entity_registry', 'homeassistant.helpers.location', '_ctypes', 'ctypes._endian', 'ctypes', 'homeassistant.util.thread', 'homeassistant.helpers.template', 'homeassistant.helpers.script_variables', 'homeassistant.helpers.logging', 'homeassistant.helpers.config_validation', 'homeassistant.helpers.entity_values', 'homeassistant.config', 'homeassistant.helpers.ratelimit', 'homeassistant.helpers.sun', 'homeassistant.helpers.event', 'timeit', 'homeassistant.setup', 'homeassistant.config_entries', 'homeassistant.components', 'homeassistant.util.json', 'homeassistant.helpers.storage', 'homeassistant.util.ssl', 'homeassistant.components.http.const', 'homeassistant.components.http.auth', 'homeassistant.helpers.json', 'homeassistant.components.http.view', 'homeassistant.components.http.ban', 'homeassistant.components.http.cors', 'homeassistant.components.http.forwarded', 'homeassistant.components.http.request_context', 'homeassistant.components.http.security_filter', 'homeassistant.components.http.static', 'homeassistant.components.http.web_runner', 'homeassistant.components.http', 'homeassistant.helpers.area_registry', 'homeassistant.util.logging', 'homeassistant.helpers.dispatcher', 'homeassistant.bootstrap', 'homeassistant.util.executor', 'homeassistant.runner', 'homeassistant.auth.providers.homeassistant', 'homeassistant.auth.providers.legacy_api_password', 'homeassistant.components.websocket_api.const', 'homeassistant.helpers.service', 'homeassistant.helpers.entity_platform', 'homeassistant.helpers.entity', 'homeassistant.components.websocket_api.messages', 'homeassistant.components.websocket_api.connection', 'homeassistant.components.websocket_api.decorators', 'homeassistant.components.websocket_api.commands', 'homeassistant.components.websocket_api.error', 'homeassistant.components.websocket_api.auth', 'homeassistant.components.websocket_api.http', 'homeassistant.components.websocket_api', 'homeassistant.components.mqtt.const', 'homeassistant.components.mqtt.models', 'homeassistant.components.mqtt.debug_info', 'homeassistant.components.mqtt.abbreviations', 'homeassistant.components.mqtt.discovery', 'homeassistant.components.mqtt.util', 'homeassistant.components.mqtt', '_sqlite3', 'sqlite3.dbapi2', 'sqlite3', 'sqlalchemy.util.compat', 'sqlalchemy.cimmutabledict', 'sqlalchemy.util._collections', 'sqlalchemy.util._preloaded', 'greenlet._greenlet', 'greenlet', 'sqlalchemy.exc', 'sqlalchemy.util.langhelpers', 'sqlalchemy.util._concurrency_py3k', 'sqlalchemy.util.concurrency', 'sqlalchemy.util.deprecations', 'sqlalchemy.util', 'sqlalchemy.sql.roles', 'sqlalchemy.sql.visitors', 'sqlalchemy.sql.operators', 'sqlalchemy.inspection', 'sqlalchemy.sql.traversals', 'sqlalchemy.sql.base', 'sqlalchemy.sql.coercions', 'sqlalchemy.sql.type_api', 'sqlalchemy.sql.annotation', 'sqlalchemy.sql.elements', 'sqlalchemy.event.legacy', 'sqlalchemy.event.registry', 'sqlalchemy.event.attr', 'sqlalchemy.event.base', 'sqlalchemy.event.api', 'sqlalchemy.event', 'sqlalchemy.cprocessors', 'sqlalchemy.processors', 'sqlalchemy.sql.sqltypes', 'sqlalchemy.types', 'sqlalchemy.util.topological', 'sqlalchemy.sql.ddl', 'sqlalchemy.sql.selectable', 'sqlalchemy.sql.schema', 'sqlalchemy.sql.util', 'sqlalchemy.sql.dml', 'sqlalchemy.sql.crud', 'sqlalchemy.sql.functions', 'sqlalchemy.sql.compiler', 'sqlalchemy.sql.lambdas', 'sqlalchemy.sql.expression', 'sqlalchemy.sql.events', 'sqlalchemy.sql.default_comparator', 'sqlalchemy.sql.naming', 'sqlalchemy.sql', 'sqlalchemy.engine.interfaces', 'sqlalchemy.engine.util', 'sqlalchemy.log', 'sqlalchemy.engine.base', 'sqlalchemy.engine.events', 'sqlalchemy.dialects', 'sqlalchemy.engine.url', 'sqlalchemy.engine.mock', 'sqlalchemy.pool.base', 'sqlalchemy.pool.events', 'sqlalchemy.util.queue', 'sqlalchemy.pool.impl', 'sqlalchemy.pool.dbapi_proxy', 'sqlalchemy.pool', 'sqlalchemy.engine.create', 'sqlalchemy.cresultproxy', 'sqlalchemy.engine.row', 'sqlalchemy.engine.result', 'sqlalchemy.engine.cursor', 'sqlalchemy.engine.reflection', 'sqlalchemy.engine', 'sqlalchemy.schema', 'sqlalchemy.events', 'sqlalchemy.engine.characteristics', 'sqlalchemy.engine.default', 'sqlalchemy', 'sqlalchemy.orm.exc', 'sqlalchemy.orm.base', 'sqlalchemy.orm.collections', 'sqlalchemy.orm.path_registry', 'sqlalchemy.orm.interfaces', 'sqlalchemy.orm.attributes', 'sqlalchemy.orm.state', 'sqlalchemy.orm.instrumentation', 'sqlalchemy.orm.util', 'sqlalchemy.orm.strategy_options', 'sqlalchemy.future.engine', 'sqlalchemy.future', 'sqlalchemy.orm.loading', 'sqlalchemy.orm.descriptor_props', 'sqlalchemy.orm.relationships', 'sqlalchemy.orm.properties', 'sqlalchemy.orm.mapper', 'sqlalchemy.orm.context', 'sqlalchemy.orm.clsregistry', 'sqlalchemy.orm.decl_base', 'sqlalchemy.orm.decl_api', 'sqlalchemy.orm.identity', 'sqlalchemy.orm.query', 'sqlalchemy.orm.evaluator', 'sqlalchemy.orm.sync', 'sqlalchemy.orm.persistence', 'sqlalchemy.orm.unitofwork', 'sqlalchemy.orm.session', 'sqlalchemy.orm.scoping', 'sqlalchemy.orm.events', 'sqlalchemy.orm.strategies', 'sqlalchemy.orm.dynamic', 'sqlalchemy.orm.dependency', 'sqlalchemy.ext.baked', 'sqlalchemy.ext', 'sqlalchemy.orm', 'homeassistant.components.persistent_notification', 'homeassistant.helpers.entityfilter', 'homeassistant.helpers.integration_platform', 'array', 'sqlalchemy.dialects.mysql.types', 'sqlalchemy.dialects.mysql.enumerated', 'sqlalchemy.dialects.mysql.reflection', 'sqlalchemy.dialects.mysql.json', 'sqlalchemy.dialects.mysql.base', 'sqlalchemy.dialects.mysql.mysqldb', 'sqlalchemy.dialects.mysql.cymysql', 'sqlalchemy.dialects.mysql.mariadbconnector', 'sqlalchemy.dialects.mysql.mysqlconnector', 'sqlalchemy.dialects.mysql.oursql', 'sqlalchemy.dialects.mysql.pymysql', 'sqlalchemy.connectors', 'sqlalchemy.connectors.pyodbc', 'sqlalchemy.dialects.mysql.pyodbc', 'sqlalchemy.dialects.mysql.dml', 'sqlalchemy.dialects.mysql.aiomysql', 'sqlalchemy.dialects.mysql', 'sqlalchemy.ext.declarative.extensions', 'sqlalchemy.ext.declarative', 'homeassistant.components.recorder.models', 'homeassistant.components.recorder.const', 'homeassistant.components.recorder.util', 'homeassistant.components.recorder.history', 'homeassistant.components.recorder.migration', 'homeassistant.components.recorder.repack', 'homeassistant.components.recorder.purge', 'homeassistant.components.recorder.statistics', 'homeassistant.components.recorder.pool', 'homeassistant.components.recorder', 'homeassistant.util.network', 'homeassistant.helpers.network', 'homeassistant.helpers.aiohttp_client', 'homeassistant.helpers.config_entry_oauth2_flow', 'tests.ignore_uncaught_exceptions', 'homeassistant.components.device_automation.exceptions', 'homeassistant.components.device_automation', 'homeassistant.helpers.intent', 'homeassistant.helpers.singleton', 'homeassistant.helpers.restore_state', 'tests.common', 'tests.test_util', 'tests.test_util.aiohttp', 'tests.conftest', 'py._builtin', 'tests.components', 'tests.components.conftest', 'tests.components.hue', 'aiohue.clip', 'aiohue.config', 'aiohue.errors', 'aiohue.api', 'aiohue.groups', 'aiohue.lights', 'aiohue.scenes', 'aiohue.sensors', 'aiohue.bridge', 'aiohue', 'aiohue.util', 'homeassistant.components.hue.const', 'homeassistant.components.hue.errors', 'homeassistant.components.hue.helpers', 'homeassistant.helpers.discovery', 'homeassistant.helpers.entity_component', 'homeassistant.components.sensor', 'homeassistant.helpers.update_coordinator', 'homeassistant.components.hue.sensor_device', 'homeassistant.components.hue.hue_event', 'homeassistant.components.hue.sensor_base', 'homeassistant.components.hue.bridge', 'homeassistant.components.hue', 'tests.components.light', 'colorsys', 'homeassistant.util.color', 'homeassistant.components.light', 'tests.components.light.conftest', 'tests.components.hue.conftest', 'tests.components.recorder', 'tests.components.recorder.common', 'tests.components.recorder.conftest', 'tests.components.zeroconf', 'tests.components.zeroconf.conftest', 'py._log', 'syslog', 'py._log.log', 'faulthandler', 'cmd', 'codeop', 'code', 'pdb', 'py._code', 'py._code.code', 'tests.helpers', 'tests.helpers.conftest', 'tests.test_bootstrap', 'encodings.unicode_escape', 'homeassistant.helpers.check_config', 'tests.test_config', 'tests.test_config_entries', 'tests.test_core', 'tests.test_data_entry_flow', 'tests.test_exceptions', 'homeassistant.components.hue.light', 'tests.test_loader', 'homeassistant.__main__', 'tests.test_main', 'tests.test_requirements', 'tests.test_runner', 'tests.test_setup', 'tests.auth', 'tests.auth.test_auth_store', 'tests.auth.test_init', 'tests.auth.test_models', 'tests.auth.mfa_modules', 'tests.auth.mfa_modules.test_insecure_example', 'tests.auth.mfa_modules.test_totp', 'tests.auth.permissions', 'tests.auth.permissions.test_entities', 'tests.auth.permissions.test_merge', 'tests.auth.permissions.test_system_policies', 'tests.auth.permissions.test_util', 'tests.auth.providers', 'homeassistant.auth.providers.command_line', 'tests.auth.providers.test_command_line', 'tests.auth.providers.test_homeassistant', 'homeassistant.auth.providers.insecure_example', 'tests.auth.providers.test_insecure_example', 'tests.auth.providers.test_legacy_api_password', 'homeassistant.auth.providers.trusted_networks', 'tests.auth.providers.test_trusted_networks', 'tests.hassfest', 'script', 'script.hassfest', 'script.hassfest.model', 'script.hassfest.dependencies', 'tests.hassfest.test_dependencies', 'script.hassfest.manifest', 'tests.hassfest.test_version', 'tests.helpers.test_aiohttp_client', 'tests.helpers.test_area_registry', 'tests.helpers.test_check_config', 'homeassistant.helpers.collection', 'tests.helpers.test_collection', 'homeassistant.components.sun', 'homeassistant.components.blueprint.const', 'homeassistant.components.blueprint.errors', 'homeassistant.helpers.selector', 'homeassistant.components.blueprint.schemas', 'homeassistant.components.blueprint.models', 'homeassistant.components.blueprint.importer', 'homeassistant.components.blueprint.websocket_api', 'homeassistant.components.blueprint', 'homeassistant.components.zone.const', 'homeassistant.components.zone', 'homeassistant.helpers.trace', 'homeassistant.helpers.condition', 'homeassistant.components.scene', 'homeassistant.components.logger', 'homeassistant.helpers.trigger', 'homeassistant.helpers.script', 'homeassistant.components.trace.const', 'homeassistant.components.trace.websocket_api', 'homeassistant.components.trace.utils', 'homeassistant.components.trace', 'homeassistant.components.automation.const', 'homeassistant.components.automation.helpers', 'homeassistant.components.automation.config', 'homeassistant.components.automation.trace', 'homeassistant.components.automation', 'tests.helpers.test_condition', 'homeassistant.helpers.config_entry_flow', 'tests.helpers.test_config_entry_flow', 'tests.helpers.test_config_entry_oauth2_flow', 'tests.helpers.test_config_validation', 'tests.helpers.test_debounce', 'tests.helpers.test_deprecation', 'tests.helpers.test_device_registry', 'tests.helpers.test_discovery', 'tests.helpers.test_dispatcher', 'tests.helpers.test_entity', 'tests.helpers.test_entity_component', 'tests.helpers.test_entity_platform', 'tests.helpers.test_entity_registry', 'tests.helpers.test_entity_values', 'tests.helpers.test_entityfilter', 'pytz.exceptions', 'pytz.lazy', 'pytz.tzinfo', 'pytz.tzfile', 'pytz', 'astral', 'astral.sun', 'tests.helpers.test_event', 'tests.helpers.test_frame', 'httpx.__version__', 'httpx._exceptions', 'rfc3986.compat', 'rfc3986.exceptions', 'rfc3986.abnf_regexp', 'rfc3986.misc', 'rfc3986.normalizers', 'rfc3986.validators', 'rfc3986._mixin', 'rfc3986.uri', 'rfc3986.iri', 'rfc3986.parseresult', 'rfc3986.api', 'rfc3986', 'httpx._transports', 'httpx._transports.base', 'httpx._types', 'httpx._utils', 'httpx._multipart', 'httpx._content', 'httpx._decoders', 'httpx._status_codes', 'httpx._models', 'httpx._auth', 'httpx._compat', 'httpx._config', 'httpx._transports.asgi', 'httpcore._async', 'httpcore._types', 'httpcore._async.base', 'httpcore._backends', 'httpcore._backends.base', 'httpcore._exceptions', 'httpcore._utils', 'httpcore._backends.sync', 'httpcore._backends.auto', 'httpcore._threadlock', 'httpcore._async.http', 'h11._abnf', 'h11._util', 'h11._headers', 'h11._events', 'h11._state', 'h11._readers', 'h11._receivebuffer', 'h11._writers', 'h11._connection', 'h11._version', 'h11', 'httpcore._sync', 'httpcore._sync.base', 'httpcore._bytestreams', 'httpcore._async.http11', 'httpcore._async.connection', 'httpcore._async.connection_pool', 'httpcore._async.http_proxy', 'httpcore._sync.http', 'httpcore._sync.http11', 'httpcore._sync.connection', 'httpcore._sync.connection_pool', 'httpcore._sync.http_proxy', 'httpcore', 'httpx._transports.default', 'httpx._transports.wsgi', 'httpx._client', 'httpx._api', 'httpx._transports.mock', 'httpx', 'homeassistant.helpers.httpx_client', 'tests.helpers.test_httpx_client', 'tests.helpers.test_icon', 'tests.helpers.test_init', 'tests.helpers.test_instance_id', 'tests.helpers.test_integration_platform', 'tests.helpers.test_intent', 'tests.helpers.test_json', 'tests.helpers.test_location', 'fcntl', 'atomicwrites', 'jose.exceptions', 'jose', 'cryptography.hazmat.bindings', 'cryptography.hazmat.bindings.openssl', '_openssl.lib', '_openssl', 'cryptography.hazmat.bindings._openssl', 'cryptography.hazmat.bindings.openssl._conditional', 'cryptography.hazmat.bindings.openssl.binding', 'cryptography.hazmat.primitives.hmac', 'cryptography.x509.certificate_transparency', 'cryptography.hazmat.primitives.constant_time', 'cryptography.x509.oid', 'cryptography.x509.name', 'cryptography.x509.general_name', 'cryptography.x509.extensions', 'cryptography.x509.base', 'cryptography.x509', 'cryptography.hazmat.backends.openssl.aead', 'cryptography.hazmat.backends.openssl.ciphers', 'cryptography.hazmat.backends.openssl.cmac', 'cryptography.hazmat.backends.openssl.decode_asn1', 'cryptography.hazmat.backends.openssl.dh', 'cryptography.hazmat.backends.openssl.utils', 'cryptography.hazmat.backends.openssl.dsa', 'cryptography.hazmat.backends.openssl.ec', 'cryptography.hazmat.backends.openssl.ed25519', 'cryptography.hazmat.backends.openssl.ed448', 'cryptography.hazmat.backends.openssl.encode_asn1', 'cryptography.hazmat.backends.openssl.hashes', 'cryptography.hazmat.backends.openssl.hmac', 'cryptography.hazmat.backends.openssl.rsa', 'cryptography.hazmat.backends.openssl.x509', 'cryptography.x509.ocsp', 'cryptography.hazmat.backends.openssl.ocsp', 'cryptography.hazmat.backends.openssl.poly1305', 'cryptography.hazmat.primitives.asymmetric.x25519', 'cryptography.hazmat.backends.openssl.x25519', 'cryptography.hazmat.primitives.asymmetric.x448', 'cryptography.hazmat.backends.openssl.x448', 'cryptography.hazmat.primitives.kdf', 'cryptography.hazmat.primitives.kdf.scrypt', 'cryptography.hazmat.primitives.serialization.pkcs7', 'cryptography.hazmat.backends.openssl.backend', 'cryptography.hazmat.backends.openssl', 'cryptography.hazmat.primitives.ciphers.aead', 'cryptography.hazmat.primitives.keywrap', '_padding.lib', '_padding', 'cryptography.hazmat.bindings._padding', 'cryptography.hazmat.primitives.padding', 'jose.constants', 'jose.utils', 'jose.backends.base', 'jose.backends.cryptography_backend', 'jose.backends', 'jose.jwk', 'jose.jws', 'jose.jwt', 'botocore', 'botocore.vendored', 'botocore.vendored.six', 'botocore.vendored.requests.packages.urllib3.exceptions', 'botocore.vendored.requests.packages.urllib3', 'botocore.vendored.requests.packages', 'botocore.vendored.requests.exceptions', 'botocore.vendored.requests', 'botocore.exceptions', 'dateutil._version', 'dateutil', 'dateutil.tz._common', 'dateutil.tz._factories', 'dateutil.tz.tz', 'dateutil.tz', 'botocore.vendored.six.moves', 'xml.etree.cElementTree', 'botocore.compat', 'botocore.configloader', 'termios', 'getpass', 'dateutil._common', 'dateutil.relativedelta', 'dateutil.parser._parser', 'dateutil.parser.isoparser', 'dateutil.parser', 'OpenSSL._util', 'OpenSSL.crypto', 'OpenSSL.SSL', 'OpenSSL.version', 'OpenSSL', 'urllib3.packages.backports', 'urllib3.packages.backports.makefile', 'urllib3.contrib.pyopenssl', 'botocore.vendored.six.moves.urllib_parse', 'botocore.httpsession', 'botocore.vendored.six.moves.urllib', 'botocore.vendored.six.moves.urllib.request', 'botocore.utils', 'botocore.awsrequest', 'botocore.hooks', 'botocore.history', 'botocore.eventstream', 'botocore.parsers', 'botocore.response', 'botocore.endpoint', 'botocore.config', 'botocore.credentials', 'jmespath.compat', 'jmespath.exceptions', 'jmespath.lexer', 'jmespath.ast', 'jmespath.functions', 'jmespath.visitor', 'jmespath.parser', 'jmespath', 'botocore.docs.utils', 'botocore.docs.shape', 'botocore.docs.params', 'botocore.docs.example', 'botocore.docs.method', 'botocore.docs.sharedexample', 'botocore.docs.client', 'botocore.docs.waiter', 'botocore.docs.paginator', 'botocore.docs.bcdoc', '_markupbase', 'html.parser', 'botocore.docs.bcdoc.docstringparser', 'botocore.docs.bcdoc.style', 'botocore.docs.bcdoc.restdoc', 'botocore.docs.service', 'botocore.docs', 'botocore.docs.docstring', 'botocore.waiter', 'botocore.validate', 'botocore.serialize', 'botocore.auth', 'botocore.signers', 'botocore.args', 'botocore.model', 'botocore.paginate', 'botocore.discovery', 'botocore.retries', 'botocore.retries.quota', 'botocore.retries.base', 'botocore.retries.special', 'botocore.retries.standard', 'botocore.retries.bucket', 'botocore.retries.throttling', 'botocore.retries.adaptive', 'botocore.client', 'botocore.configprovider', 'botocore.errorfactory', 'botocore.retryhandler', 'botocore.translate', 'botocore.handlers', 'botocore.loaders', 'botocore.regions', 'botocore.monitoring', 'botocore.session', 'boto3.utils', 'boto3.exceptions', 'boto3.resources', 'boto3.resources.params', 'boto3.resources.response', 'boto3.resources.model', 'boto3.docs.client', 'boto3.docs.base', 'boto3.docs.method', 'boto3.docs.utils', 'boto3.docs.action', 'boto3.docs.waiter', 'boto3.docs.collection', 'boto3.docs.subresource', 'boto3.docs.attr', 'boto3.docs.resource', 'boto3.docs.service', 'boto3.docs', 'boto3.docs.docstring', 'boto3.resources.action', 'boto3.resources.base', 'boto3.resources.collection', 'boto3.resources.factory', 'boto3.session', 'boto3.compat', 'boto3', 'envs.exceptions', 'envs', 'pycognito.exceptions', 'pycognito.aws_srp', 'pycognito', 'hass_nabucasa.const', 'hass_nabucasa.auth', 'hass_nabucasa.client', 'hass_nabucasa.cloud_api', 'hass_nabucasa.cloudhooks', 'hass_nabucasa.utils', 'hass_nabucasa.iot_base', 'hass_nabucasa.google_report_state', 'hass_nabucasa.iot', 'snitun', 'snitun.exceptions', 'snitun.utils', 'snitun.utils.aes', 'snitun.client', 'snitun.multiplexer', 'snitun.utils.ipaddress', 'snitun.multiplexer.message', 'snitun.multiplexer.channel', 'snitun.multiplexer.crypto', 'snitun.multiplexer.core', 'snitun.client.connector', 'snitun.client.client_peer', 'snitun.utils.aiohttp_client', 'josepy.b64', 'josepy.errors', 'josepy.util', 'josepy.interfaces', 'josepy.json_util', 'josepy.jwk', 'josepy.jwa', 'josepy.jws', 'josepy', 'acme.jose.b64', 'acme.jose.errors', 'acme.jose.util', 'acme.jose.interfaces', 'acme.jose.json_util', 'acme.jose.jwk', 'acme.jose.jwa', 'acme.jose.jws', 'acme.jose', 'acme', 'acme.errors', 'acme.crypto_util', 'pyrfc3339.utils', 'pyrfc3339.generator', 'pyrfc3339.parser', 'pyrfc3339', 'acme.fields', 'acme.mixins', 'acme.challenges', 'urllib3.contrib.appengine', 'requests.packages.urllib3.packages.backports', 'requests.packages.urllib3.packages.backports.makefile', 'requests.packages.urllib3.contrib.pyopenssl', 'requests_toolbelt._compat', 'requests_toolbelt.adapters.ssl', 'requests_toolbelt.adapters.source', 'requests_toolbelt.adapters', 'requests_toolbelt.auth', 'requests_toolbelt.auth._digest_auth_compat', 'requests_toolbelt.auth.http_proxy_digest', 'requests_toolbelt.auth.guess', 'requests_toolbelt.multipart.encoder', 'requests_toolbelt.multipart.decoder', 'requests_toolbelt.multipart', 'requests_toolbelt.streaming_iterator', 'requests_toolbelt.utils', 'requests_toolbelt.utils.user_agent', 'requests_toolbelt', 'acme.jws', 'acme.util', 'acme.messages', 'acme.client', 'hass_nabucasa.acme', 'hass_nabucasa.remote', 'hass_nabucasa.voice', 'hass_nabucasa', 'homeassistant.helpers.temperature', 'homeassistant.components.climate.const', 'homeassistant.components.climate', 'homeassistant.components.alexa.const', 'homeassistant.components.alexa.flash_briefings', 'homeassistant.components.alexa.intent', 'homeassistant.components.alexa.auth', 'homeassistant.helpers.significant_change', 'homeassistant.components.alarm_control_panel.const', 'homeassistant.components.alarm_control_panel', 'homeassistant.components.notify', 'homeassistant.components.alert', 'homeassistant.components.binary_sensor', 'homeassistant.components.media_player.const', 'homeassistant.components.media_player.errors', 'homeassistant.components.media_player', 'homeassistant.components.stream.const', 'homeassistant.components.stream.core', 'homeassistant.components.stream.fmp4utils', 'homeassistant.components.stream.hls', 'tests.helpers.test_ratelimit', 'homeassistant.helpers.recorder', 'tests.helpers.test_recorder', 'homeassistant.helpers.reload', 'tests.helpers.test_reload', 'tests.helpers.test_restore_state', 'tests.helpers.test_script', 'tests.helpers.test_script_variables', 'tests.helpers.test_selector', 'tests.helpers.test_service', 'tests.helpers.test_significant_change', 'tests.helpers.test_singleton', 'homeassistant.helpers.start', 'tests.helpers.test_start', 'homeassistant.helpers.state', 'tests.helpers.test_state', 'tests.helpers.test_storage', 'tests.helpers.test_storage_remove', 'tests.helpers.test_sun', 'tests.helpers.test_system_info', 'tests.helpers.test_temperature', 'homeassistant.components.group', 'tests.helpers.test_template', 'homeassistant.generated.config_flows', 'homeassistant.helpers.translation', 'tests.helpers.test_translation', 'tests.helpers.test_trigger', 'tests.helpers.test_update_coordinator', 'tests.scripts', 'homeassistant.scripts', 'homeassistant.scripts.auth', 'tests.scripts.test_auth', 'homeassistant.scripts.check_config', 'tests.scripts.test_check_config', 'tests.scripts.test_init', 'tests.test_util.test_aiohttp', 'tests.util', 'homeassistant.util.aiohttp', 'tests.util.test_aiohttp', 'tests.util.test_async', 'tests.util.test_color', 'tests.util.test_distance', 'tests.util.test_dt', 'tests.util.test_executor', 'tests.util.test_init', 'tests.util.test_json', 'tests.util.test_location', 'tests.util.test_logging', 'tests.util.test_network', 'tests.util.test_package', 'homeassistant.util.percentage', 'tests.util.test_percentage', 'tests.util.test_pressure', 'homeassistant.util.process', 'tests.util.test_process', 'ruamel', 'ruamel.yaml.compat', 'ruamel.yaml.error', 'ruamel.yaml.util', 'ruamel.yaml.reader', 'ruamel.yaml.tokens', 'ruamel.yaml.scanner', 'ruamel.yaml.events', 'ruamel.yaml.anchor', 'ruamel.yaml.scalarstring', 'ruamel.yaml.comments', 'ruamel.yaml.parser', 'ruamel.yaml.nodes', 'ruamel.yaml.composer', 'ruamel.yaml.scalarint', 'ruamel.yaml.scalarfloat', 'ruamel.yaml.scalarbool', 'ruamel.yaml.timestamp', 'ruamel.yaml.constructor', 'ruamel.yaml.emitter', 'ruamel.yaml.serializer', 'ruamel.yaml.representer', '_ruamel_yaml', 'ruamel.yaml.resolver', 'ruamel.yaml.cyaml', 'ruamel.yaml.loader', 'ruamel.yaml.dumper', 'ruamel.yaml.main', 'ruamel.yaml', 'homeassistant.util.ruamel_yaml', 'tests.util.test_ruamel_yaml', 'tests.util.test_temperature', 'tests.util.test_thread', 'tests.util.test_timeout', 'tests.util.test_unit_system', 'tests.util.test_uuid', 'tests.util.test_volume', 'tests.util.yaml', 'tests.util.yaml.test_init', 'tests.util.yaml.test_input', 'tests.components.default_config', 'tests.components.blueprint', 'tests.components.blueprint.conftest', 'tests.components.default_config.test_init', 'tests.components.hue.test_bridge', 'aiohue.discovery', 'async_upnp_client.utils', 'async_upnp_client.ssdp', 'async_upnp_client.advertisement', 'xml.sax.handler', 'xml.sax._exceptions', 'xml.sax.xmlreader', 'xml.sax', 'xml.sax.saxutils', 'defusedxml.common', 'defusedxml', '_elementtree', 'xml.etree.ElementTree', 'defusedxml.ElementTree', 'async_upnp_client.const', 'async_upnp_client.exceptions', 'async_upnp_client.client', 'async_upnp_client.client_factory', 'async_upnp_client.event_handler', 'async_upnp_client', 'async_upnp_client.search', 'homeassistant.components.network.const', 'homeassistant.components.network.models', 'ifaddr._shared', 'ctypes.util', 'ifaddr._posix', 'ifaddr', 'homeassistant.components.network.util', 'homeassistant.components.network.network', 'homeassistant.components.network', 'homeassistant.components.ssdp.util', 'homeassistant.components.ssdp.descriptions', 'homeassistant.components.ssdp.flow', 'homeassistant.components.ssdp', 'homeassistant.components.hue.config_flow', 'tests.components.hue.test_config_flow', 'homeassistant.components.homeassistant', 'homeassistant.components.homeassistant.triggers', 'homeassistant.components.homeassistant.triggers.event', 'homeassistant.components.hue.device_trigger', 'tests.components.hue.test_sensor_base', 'tests.components.hue.test_device_trigger', 'tests.components.hue.test_init', 'tests.components.hue.test_init_multiple_bridges', 'tests.components.hue.test_light', 'tests.components.recorder.test_history', 'tests.components.recorder.test_init', 'tests.components.recorder.models_original', 'tests.components.recorder.test_migrate', 'tests.components.recorder.test_models', 'tests.components.recorder.test_pool', 'tests.components.recorder.test_purge', 'tests.components.recorder.test_statistics', 'tests.components.recorder.test_util', 'zeroconf._exceptions', 'zeroconf._utils', 'zeroconf._logger', 'zeroconf.const', 'zeroconf._utils.net', 'zeroconf._utils.time', 'zeroconf._dns', 'zeroconf._cache', 'zeroconf._history', 'zeroconf._utils.struct', 'zeroconf._protocol', 'zeroconf._services', 'zeroconf._updates', 'zeroconf._utils.asyncio', 'zeroconf._utils.name', 'zeroconf._services.info', 'zeroconf._services.registry', 'zeroconf._handlers', 'zeroconf._services.browser', 'zeroconf._core', 'zeroconf._services.types', 'zeroconf', 'zeroconf.asyncio', 'homeassistant.components.zeroconf.models', 'homeassistant.components.zeroconf.usage', 'homeassistant.components.zeroconf', 'tests.components.zeroconf.test_init', 'tests.components.zeroconf.test_usage', 'custom_components', 'custom_components.test_package.const', 'custom_components.test_package', 'custom_components.test', 'custom_components.test.light', 'custom_components.test_embedded', 'custom_components.test_embedded.switch', 'homeassistant.components.switch', 'aiohttp_cors.__about__', 'aiohttp_cors.resource_options', 'aiohttp_cors.abc', 'aiohttp_cors.preflight_handler', 'aiohttp_cors.mixin', 'aiohttp_cors.urldispatcher_router_adapter', 'aiohttp_cors.cors_config', 'aiohttp_cors', 'astral.moon', 'astral.location', 'homeassistant.components.input_datetime', 'homeassistant.components.input_text', 'homeassistant.components.input_select', 'jinja2.debug', 'homeassistant.components.input_number', 'homeassistant.components.homeassistant.trigger', 'homeassistant.components.updater', 'homeassistant.components.counter', 'homeassistant.components.dhcp', 'dns.version', 'dns', 'dns.exception', 'dns._immutable_ctx', 'dns.immutable', 'dns.name', 'dns.wire', 'dns.enum', 'dns.ipv4', 'dns.ipv6', 'dns.inet', 'dns.rdataclass', 'dns.rdatatype', 'dns.ttl', 'dns.tokenizer', 'dns.rdata', 'dns.edns', 'dns.flags', 'dns.opcode', 'dns.entropy', 'dns.rcode', 'dns.set', 'dns.rdataset', 'dns.tsig', 'dns.renderer', 'dns.rrset', 'dns.rdtypes', 'dns.rdtypes.ANY', 'dns.rdtypes.ANY.OPT', 'dns.rdtypes.ANY.TSIG', 'dns.message', 'pr2modules', 'multiprocessing.process', 'multiprocessing.reduction', 'multiprocessing.context', '__mp_main__', 'multiprocessing', 'pr2modules.config', 'pr2modules.config.version', 'pr2modules.config.log', 'pr2modules.common', 'pr2modules.netlink.exceptions', 'pr2modules.netlink', 'pr2modules.netlink.nlsocket', 'pr2modules.netlink.generic', 'pr2modules.netlink.event', 'pr2modules.netlink.event.acpi_event', 'pr2modules.netlink.event.dquot', 'pr2modules.netlink.devlink', 'pr2modules.netlink.diag', 'pr2modules.netlink.rtnl', 'pr2modules.netlink.rtnl.iw_event', 'pr2modules.netlink.rtnl.ifinfmsg.plugins', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.bond', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.geneve', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.gtp', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.ipvlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.team', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.tuntap', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.tun', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vrf', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vti', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vti6', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vxlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.xfrm', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.ipoib', 'pr2modules.netlink.rtnl.ifinfmsg', 'pr2modules.netlink.rtnl.rtmsg', 'pr2modules.netlink.rtnl.fibmsg', 'pr2modules.netlink.rtnl.req', 'pr2modules.netlink.ipq', 'pr2modules.proxy', 'pr2modules.protocols', 'pr2modules.netlink.rtnl.tcmsg.common', 'pr2modules.netlink.rtnl.tcmsg.act_police', 'pr2modules.netlink.rtnl.tcmsg.act_gact', 'pr2modules.netlink.rtnl.tcmsg.act_bpf', 'pr2modules.netlink.rtnl.tcmsg.act_mirred', 'pr2modules.netlink.rtnl.tcmsg.act_connmark', 'pr2modules.netlink.rtnl.tcmsg.act_vlan', 'pr2modules.netlink.rtnl.tcmsg.act_skbedit', 'pr2modules.netlink.rtnl.tcmsg.common_act', 'pr2modules.netlink.rtnl.tcmsg.cls_fw', 'pr2modules.netlink.rtnl.tcmsg.cls_u32', 'pr2modules.netlink.rtnl.tcmsg.cls_matchall', 'pr2modules.netlink.rtnl.tcmsg.em_cmp', 'pr2modules.netlink.rtnl.tcmsg.em_ipset', 'pr2modules.netlink.rtnl.tcmsg.em_meta', 'pr2modules.netlink.rtnl.tcmsg.common_ematch', 'pr2modules.netlink.rtnl.tcmsg.cls_basic', 'pr2modules.netlink.rtnl.tcmsg.cls_flow', 'pr2modules.netlink.rtnl.tcmsg.sched_bpf', 'pr2modules.netlink.rtnl.tcmsg.sched_cake', 'pr2modules.netlink.rtnl.tcmsg.sched_choke', 'pr2modules.netlink.rtnl.tcmsg.sched_clsact', 'pr2modules.netlink.rtnl.tcmsg.sched_codel', 'pr2modules.netlink.rtnl.tcmsg.sched_drr', 'pr2modules.netlink.rtnl.tcmsg.sched_fq_codel', 'pr2modules.netlink.rtnl.tcmsg.sched_hfsc', 'pr2modules.netlink.rtnl.tcmsg.sched_htb', 'pr2modules.netlink.rtnl.tcmsg.sched_ingress', 'pr2modules.netlink.rtnl.tcmsg.sched_netem', 'pr2modules.netlink.rtnl.tcmsg.sched_pfifo', 'pr2modules.netlink.rtnl.tcmsg.sched_pfifo_fast', 'pr2modules.netlink.rtnl.tcmsg.sched_plug', 'pr2modules.netlink.rtnl.tcmsg.sched_sfq', 'pr2modules.netlink.rtnl.tcmsg.sched_tbf', 'pr2modules.netlink.rtnl.tcmsg.sched_template', 'pr2modules.netlink.rtnl.tcmsg', 'pr2modules.netlink.rtnl.ndmsg', 'pr2modules.netlink.rtnl.ndtmsg', 'pr2modules.netlink.rtnl.rtgenmsg', 'pr2modules.netlink.rtnl.nsidmsg', 'pr2modules.netlink.rtnl.ifaddrmsg', 'pr2modules.netlink.rtnl.ifstatsmsg', 'pr2modules.netlink.rtnl.marshal', 'pr2modules.netlink.rtnl.riprsocket', 'pr2modules.netlink.rtnl.ifinfmsg.sync', 'pr2modules.netlink.rtnl.ifinfmsg.tuntap', 'pr2modules.netlink.rtnl.ifinfmsg.proxy', 'pr2modules.netlink.rtnl.iprsocket', 'pr2modules.netlink.rtnl.nsinfmsg', 'pr2modules.iproute.linux', 'pr2modules.iproute', 'pr2modules.netlink.generic.l2tp', 'pr2modules.netlink.generic.mptcp', 'pr2modules.netlink.nfnetlink', 'pr2modules.netlink.nfnetlink.nfctsocket', 'pr2modules.netlink.nfnetlink.nftsocket', 'pr2modules.netlink.nl80211', 'pr2modules.netlink.taskstats', 'pr2modules.netlink.uevent', 'pr2modules.netlink.generic.wireguard', 'pr2modules.bsd', 'pr2modules.iwutil', 'pr2modules.netns', 'pr2modules.netlink.generic.ethtool', 'pr2modules.ethtool.common', 'pr2modules.ethtool.ioctl', 'pr2modules.ethtool.ethtool', 'pr2modules.ethtool', 'pr2modules.ipdb', 'pr2modules.ipdb.exceptions', 'pr2modules.ipdb.linkedset', 'pr2modules.ipdb.transactional', 'pr2modules.ipdb.rules', 'pr2modules.ipdb.routes', 'pr2modules.ipdb.interfaces', 'pr2modules.ipdb.utils', 'pr2modules.ipdb.main', 'pr2modules.netlink.nfnetlink.ipset', 'pr2modules.ipset', 'pr2modules.wiset', 'pr2modules.cli', 'pr2modules.ndb', 'pr2modules.ndb.report', 'pr2modules.ndb.auth_manager', 'pr2modules.ndb.events', 'pr2modules.ndb.objects', 'pr2modules.ndb.objects.address', 'pr2modules.netlink.rtnl.p2pmsg', 'pr2modules.ndb.objects.interface', 'pr2modules.ndb.objects.neighbour', 'pr2modules.ndb.objects.netns', 'pr2modules.ndb.objects.route', 'pr2modules.ndb.objects.rule', 'pr2modules.ndb.messages', 'pr2modules.ndb.schema', 'mitogen', 'pstats', 'imp', '_lsprof', 'profile', 'cProfile', 'mitogen.core', 'mitogen.minify', 'mitogen.parent', '_sysconfigdata__linux_x86_64-linux-gnu', 'mitogen.master', 'pr2modules.remote.transport', 'pr2modules.remote.iproute', 'pr2modules.remote', 'pr2modules.inotify', 'pr2modules.inotify.inotify_msg', 'pr2modules.inotify.inotify_fd', 'pr2modules.netns.manager', 'pr2modules.nslink', 'pr2modules.nslink.nslink', 'pr2modules.ndb.source', 'pr2modules.ndb.main', 'pr2modules.cli.parser', 'pr2modules.cli.session', 'readline', 'pr2modules.cli.console', 'pr2modules.ndb.noipdb', 'pr2modules.cli.server', 'pr2modules.nftables', 'pr2modules.nftables.main', 'pr2modules.nslink.nspopen', 'pyroute2', 'aiodiscover.network', 'aiodiscover.discovery', 'aiodiscover', 'scapy', 'scapy.arch', 'gzip', 'scapy.modules', 'scapy.modules.six', 'scapy.compat', 'scapy.consts', 'scapy.error', 'scapy.modules.six.moves', 'scapy.base_classes', 'scapy.themes', 'scapy.config', 'scapy.dadict', 'scapy.libs', 'scapy.libs.ethertypes', 'scapy.data', 'scapy.pton_ntop', 'scapy.utils', 'scapy.volatile', 'scapy.utils6', 'scapy.interfaces', 'scapy.arch.linux', 'scapy.libs.structures', 'scapy.arch.common', 'scapy.packet', 'scapy.fields', 'scapy.extlib', 'matplotlib', 'matplotlib._api.deprecation', 'matplotlib._api', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core._multiarray_umath', 'numpy.compat._inspect', 'numpy.compat.py3k', 'numpy.compat', 'numpy.core.overrides', 'numpy.core.multiarray', 'numpy.core.umath', 'numpy.core._string_helpers', 'numpy.core._dtype', 'numpy.core._type_aliases', 'numpy.core.numerictypes', 'numpy.core._asarray', 'numpy.core._exceptions', 'numpy.core._methods', 'numpy.core.fromnumeric', 'numpy.core.shape_base', 'numpy.core._ufunc_config', 'numpy.core.arrayprint', 'numpy.core.numeric', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.einsumfunc', 'numpy.core._multiarray_tests', 'numpy.core._add_newdocs', 'numpy.core._add_newdocs_scalars', 'numpy.core._dtype_ctypes', 'numpy.core._internal', 'numpy._pytesttester', 'numpy.core', 'numpy.lib.mixins', 'numpy.lib.ufunclike', 'numpy.lib.type_check', 'numpy.lib.scimath', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.linalg.linalg', 'numpy.linalg', 'numpy.matrixlib.defmatrix', 'numpy.matrixlib', 'numpy.lib.histograms', 'numpy.lib.function_base', 'numpy.lib.stride_tricks', 'numpy.lib.index_tricks', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.format', 'numpy.lib._datasource', 'numpy.lib._iotools', 'numpy.lib.npyio', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.lib', 'numpy.fft._pocketfft_internal', 'numpy.fft._pocketfft', 'numpy.fft.helper', 'numpy.fft', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.polynomial', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.polynomial', '_cython_0_29_22', 'numpy.random._common', 'numpy.random.bit_generator', 'numpy.random._bounded_integers', 'numpy.random._mt19937', 'numpy.random.mtrand', 'numpy.random._philox', 'numpy.random._pcg64', 'numpy.random._sfc64', 'numpy.random._generator', 'numpy.random._pickle', 'numpy.random', 'numpy.ctypeslib', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.ma', 'numpy', 'matplotlib._c_internal_utils', 'matplotlib.cbook', 'matplotlib.docstring', 'PIL._version', 'PIL', 'PIL.ImageMode', 'PIL.TiffTags', 'PIL._binary', 'PIL._util', 'PIL._imaging', 'cffi.lock', 'cffi.error', 'cffi.model', 'cffi.api', 'cffi', 'PIL.Image', 'matplotlib._animation_data', 'matplotlib.animation', 'PIL.ImageChops', 'PIL.ImageFile', 'PIL.GimpGradientFile', 'PIL.GimpPaletteFile', 'PIL.ImageColor', 'PIL.PaletteFile', 'PIL.ImagePalette', 'PIL.ImageSequence', 'PIL.PngImagePlugin', 'matplotlib._path', 'matplotlib.bezier', 'matplotlib.path', 'matplotlib.transforms', 'matplotlib.ticker', 'matplotlib.scale', 'matplotlib._color_data', 'matplotlib.colors', 'pyparsing', 'matplotlib.fontconfig_pattern', 'matplotlib._enums', 'cycler', 'matplotlib.rcsetup', 'matplotlib._version', 'matplotlib.ft2font', 'kiwisolver', 'dateutil.rrule', 'matplotlib.units', 'matplotlib.dates']
DEBUG:matplotlib:CACHEDIR=/build/.cache/matplotlib
DEBUG:matplotlib.font_manager:font search path [PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf'), PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/afm'), PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts')]
Fontconfig error: Cannot load default config file: No such file: (null)
INFO:matplotlib.font_manager:generated new fontManager
DEBUG:matplotlib.pyplot:Loaded backend agg version unknown.
DEBUG:matplotlib.pyplot:Loaded backend agg version unknown.
INFO:homeassistant.setup:Setting up dhcp
INFO:homeassistant.setup:Setup of domain dhcp took 0.0 seconds
DEBUG:homeassistant.setup:Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'http', 'lovelace', 'onboarding', 'search', 'system_log', 'websocket_api']
DEBUG:homeassistant.setup:Dependency history will wait for dependencies ['http', 'recorder']
INFO:homeassistant.setup:Setting up input_boolean
INFO:homeassistant.setup:Setting up input_datetime
INFO:homeassistant.setup:Setting up input_number
INFO:homeassistant.setup:Setting up input_select
INFO:homeassistant.setup:Setting up input_text
DEBUG:homeassistant.setup:Dependency logbook will wait for dependencies ['frontend', 'http', 'recorder']
DEBUG:homeassistant.setup:Dependency map will wait for dependencies ['frontend']
DEBUG:homeassistant.setup:Dependency media_source will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency mobile_app will wait for dependencies ['http', 'webhook', 'person', 'tag', 'websocket_api']
DEBUG:homeassistant.setup:Dependency my will wait for dependencies ['frontend']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency person will wait for dependencies ['image']
INFO:homeassistant.setup:Setting up scene
DEBUG:homeassistant.setup:Dependency script will wait for dependencies ['blueprint', 'trace']
DEBUG:homeassistant.setup:Dependency ssdp will wait for dependencies ['network']
INFO:homeassistant.setup:Setting up sun
DEBUG:homeassistant.components.sun:sun phase_update@2021-07-13T00:36:44.255633+00:00: phase=day
DEBUG:homeassistant.components.sun:sun position_update@2021-07-13T00:36:44.256285+00:00: elevation=27.53 azimuth=279.35
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sun.sun, old_state=None, new_state=<state sun.sun=above_horizon; next_dawn=2021-07-13T12:22:09.432484+00:00, next_dusk=2021-07-13T03:27:26.222824+00:00, next_midnight=2021-07-13T07:54:45+00:00, next_noon=2021-07-13T19:54:39+00:00, next_rising=2021-07-13T12:50:46.993913+00:00, next_setting=2021-07-13T02:58:48.813963+00:00, elevation=27.53, azimuth=279.35, rising=False, friendly_name=Sun @ 2021-07-13T00:36:44.256466+00:00>>
DEBUG:homeassistant.components.sun:next time: 2021-07-13T02:03:21.157605+00:00
INFO:homeassistant.setup:Setup of domain sun took 0.0 seconds
DEBUG:homeassistant.setup:Dependency system_health will wait for dependencies ['http']
INFO:homeassistant.loader:Loaded homeassistant from homeassistant.components.homeassistant
INFO:homeassistant.setup:Setting up tag
INFO:homeassistant.setup:Setting up timer
INFO:homeassistant.setup:Setting up updater
INFO:homeassistant.setup:Setup of domain updater took 0.0 seconds
DEBUG:homeassistant.setup:Dependency webhook will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
INFO:homeassistant.setup:Setting up zone
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=dhcp>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=sun>
ERROR:homeassistant.components.updater:Unexpected error fetching Home Assistant update data: not enough values to unpack (expected 2, got 0)
Traceback (most recent call last):
File "/build/source/homeassistant/helpers/update_coordinator.py", line 187, in _async_refresh
self.data = await self._async_update_data()
File "/build/source/homeassistant/helpers/update_coordinator.py", line 147, in _async_update_data
return await self.update_method()
File "/build/source/homeassistant/components/updater/__init__.py", line 75, in check_new_version
newest, release_notes = await get_newest_version(hass)
ValueError: not enough values to unpack (expected 2, got 0)
DEBUG:homeassistant.components.updater:Finished fetching Home Assistant update data in 0.002 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=updater>
INFO:homeassistant.setup:Setting up blueprint
INFO:homeassistant.setup:Setup of domain blueprint took 0.0 seconds
INFO:homeassistant.setup:Setting up trace
INFO:homeassistant.setup:Setup of domain trace took 0.0 seconds
INFO:homeassistant.setup:Setting up http
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency auth will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency config will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up device_automation
INFO:homeassistant.setup:Setup of domain device_automation took 0.0 seconds
INFO:homeassistant.setup:Setting up lovelace
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.setup:Dependency onboarding will wait for dependencies ['analytics', 'auth', 'http', 'person']
DEBUG:homeassistant.setup:Dependency search will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency system_log will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up recorder
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=recorder, service=purge>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=recorder, service=purge_entities>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=recorder, service=enable>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=recorder, service=disable>
DEBUG:homeassistant.setup:Dependency image will wait for dependencies ['http']
INFO:homeassistant.setup:Setup of domain tag took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=blueprint>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=trace>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=device_automation>
INFO:homeassistant.loader:Loaded binary_sensor from homeassistant.components.binary_sensor
INFO:homeassistant.setup:Setting up homeassistant
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO:homeassistant.setup:Setup of domain homeassistant took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=tag>
INFO:homeassistant.setup:Setup of domain http took 0.1 seconds
INFO:homeassistant.setup:Setup of domain lovelace took 0.0 seconds
DEBUG:homeassistant.setup:Dependency analytics will wait for dependencies ['api', 'websocket_api']
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=counter, service=increment>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=counter, service=decrement>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=counter, service=reset>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=counter, service=configure>
INFO:homeassistant.setup:Setup of domain counter took 1.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=lovelace>
INFO:homeassistant.setup:Setting up binary_sensor
INFO:homeassistant.setup:Setup of domain binary_sensor took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_boolean, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_boolean, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_boolean, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_boolean, service=toggle>
INFO:homeassistant.setup:Setup of domain input_boolean took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_datetime, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_datetime, service=set_datetime>
INFO:homeassistant.setup:Setup of domain input_datetime took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_number, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_number, service=set_value>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_number, service=increment>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_number, service=decrement>
INFO:homeassistant.setup:Setup of domain input_number took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_option>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_next>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_previous>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_first>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_last>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=set_options>
INFO:homeassistant.setup:Setup of domain input_select took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_text, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_text, service=set_value>
INFO:homeassistant.setup:Setup of domain input_text took 0.1 seconds
INFO:homeassistant.components.scene:Setting up scene.homeassistant
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=start>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=pause>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=cancel>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=finish>
INFO:homeassistant.setup:Setup of domain timer took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=zone, service=reload>
INFO:homeassistant.setup:Setting up automation
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=trigger>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=reload>
INFO:homeassistant.setup:Setup of domain automation took 0.0 seconds
INFO:homeassistant.setup:Setting up script
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=script, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=script, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=script, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=script, service=toggle>
INFO:homeassistant.setup:Setup of domain script took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=counter>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=binary_sensor>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_boolean>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_datetime>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_number>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_select>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_text>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=scene, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=scene, service=apply>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=scene, service=create>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=timer>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=zone.home, old_state=None, new_state=<state zone.home=zoning; latitude=32.87336, longitude=-117.22743, radius=100, passive=False, editable=True, friendly_name=test home, icon=mdi:home @ 2021-07-13T00:36:44.401101+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=script>
INFO:sqlalchemy.engine.Engine:BEGIN (implicit)
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("events")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("events")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("states")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("states")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("statistics")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("statistics")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("statistics_meta")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("statistics_meta")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("recorder_runs")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("recorder_runs")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:homeassistant.setup:Setting up media_source
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("schema_changes")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("schema_changes")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:homeassistant.setup:Setting up system_health
INFO:sqlalchemy.engine.Engine:
CREATE TABLE events (
event_id INTEGER NOT NULL,
event_type VARCHAR(64),
event_data TEXT,
origin VARCHAR(32),
time_fired DATETIME,
created DATETIME,
context_id VARCHAR(36),
context_user_id VARCHAR(36),
context_parent_id VARCHAR(36),
PRIMARY KEY (event_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00020s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_event_type_time_fired ON events (event_type, time_fired)
INFO:sqlalchemy.engine.Engine:[no key 0.00016s] ()
INFO:homeassistant.setup:Setting up webhook
INFO:homeassistant.setup:Setup of domain webhook took 0.0 seconds
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_context_parent_id ON events (context_parent_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00014s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_time_fired ON events (time_fired)
INFO:sqlalchemy.engine.Engine:[no key 0.00011s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_context_id ON events (context_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00012s] ()
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_context_user_id ON events (context_user_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00015s] ()
INFO:sqlalchemy.engine.Engine:
CREATE TABLE statistics (
id INTEGER NOT NULL,
created DATETIME,
source VARCHAR(32),
statistic_id VARCHAR(255),
start DATETIME,
mean FLOAT,
min FLOAT,
max FLOAT,
last_reset DATETIME,
state FLOAT,
sum FLOAT,
PRIMARY KEY (id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00013s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_statistics_start ON statistics (start)
INFO:sqlalchemy.engine.Engine:[no key 0.00013s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_statistics_statistic_id_start ON statistics (statistic_id, start)
INFO:sqlalchemy.engine.Engine:[no key 0.00012s] ()
INFO:sqlalchemy.engine.Engine:
CREATE TABLE statistics_meta (
statistic_id VARCHAR(255) NOT NULL,
source VARCHAR(32),
unit_of_measurement VARCHAR(255),
PRIMARY KEY (statistic_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00014s] ()
INFO:sqlalchemy.engine.Engine:
CREATE TABLE recorder_runs (
run_id INTEGER NOT NULL,
start DATETIME,
"end" DATETIME,
closed_incorrect BOOLEAN,
created DATETIME,
PRIMARY KEY (run_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00017s] ()
INFO:homeassistant.setup:Setting up auth
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_recorder_runs_start_end ON recorder_runs (start, "end")
INFO:homeassistant.setup:Setup of domain auth took 0.0 seconds
INFO:sqlalchemy.engine.Engine:[no key 0.00094s] ()
INFO:sqlalchemy.engine.Engine:
CREATE TABLE schema_changes (
change_id INTEGER NOT NULL,
schema_version INTEGER,
changed DATETIME,
PRIMARY KEY (change_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00011s] ()
INFO:homeassistant.setup:Setting up config
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:sqlalchemy.engine.Engine:
CREATE TABLE states (
state_id INTEGER NOT NULL,
domain VARCHAR(64),
entity_id VARCHAR(255),
state VARCHAR(255),
attributes TEXT,
event_id INTEGER,
last_changed DATETIME,
last_updated DATETIME,
created DATETIME,
old_state_id INTEGER,
PRIMARY KEY (state_id),
FOREIGN KEY(event_id) REFERENCES events (event_id) ON DELETE CASCADE,
FOREIGN KEY(old_state_id) REFERENCES states (state_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00014s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_states_last_updated ON states (last_updated)
INFO:sqlalchemy.engine.Engine:[no key 0.00015s] ()
INFO:homeassistant.setup:Setting up system_log
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_states_event_id ON states (event_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00012s] ()
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO:homeassistant.setup:Setup of domain system_log took 0.0 seconds
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_states_entity_id_last_updated ON states (entity_id, last_updated)
INFO:homeassistant.setup:Setting up websocket_api
INFO:sqlalchemy.engine.Engine:[no key 0.00020s] ()
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_states_old_state_id ON states (old_state_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00010s] ()
INFO:sqlalchemy.engine.Engine:COMMIT
DEBUG:homeassistant.components.recorder:Connected to recorder database
INFO:sqlalchemy.engine.Engine:BEGIN (implicit)
INFO:sqlalchemy.engine.Engine:SELECT schema_changes.change_id AS schema_changes_change_id, schema_changes.schema_version AS schema_changes_schema_version, schema_changes.changed AS schema_changes_changed
FROM schema_changes ORDER BY schema_changes.change_id DESC
LIMIT ? OFFSET ?
INFO:sqlalchemy.engine.Engine:[generated in 0.00022s] (1, 0)
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_list("events")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:homeassistant.setup:Setting up image
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_context_user_id")
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=scene, service=turn_on>
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:homeassistant.setup:Setup of domain scene took 0.2 seconds
INFO:homeassistant.setup:Setup of domain zone took 0.2 seconds
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_context_id")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_time_fired")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_context_parent_id")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_event_type_time_fired")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
DEBUG:homeassistant.components.recorder.migration:No schema version found. Inspected version: 17
INFO:sqlalchemy.engine.Engine:INSERT INTO schema_changes (schema_version, changed) VALUES (?, ?)
INFO:sqlalchemy.engine.Engine:[generated in 0.00119s] (17, '2021-07-13 00:36:44.458554')
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=auth>
INFO:sqlalchemy.engine.Engine:COMMIT
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.area_registry>
INFO:sqlalchemy.engine.Engine:BEGIN (implicit)
INFO:sqlalchemy.engine.Engine:SELECT recorder_runs.run_id AS recorder_runs_run_id, recorder_runs.start AS recorder_runs_start, recorder_runs."end" AS recorder_runs_end, recorder_runs.closed_incorrect AS recorder_runs_closed_incorrect, recorder_runs.created AS recorder_runs_created
FROM recorder_runs
WHERE recorder_runs."end" IS NULL
INFO:sqlalchemy.engine.Engine:[generated in 0.00029s] ()
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
INFO:sqlalchemy.engine.Engine:INSERT INTO recorder_runs (start, "end", closed_incorrect, created) VALUES (?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[generated in 0.00032s] ('2021-07-13 00:36:44.360145', None, 0, '2021-07-13 00:36:44.467812')
INFO:sqlalchemy.engine.Engine:COMMIT
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG:homeassistant.components.recorder:Recorder processing the queue
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=system_log>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.components.binary_sensor:Setting up binary_sensor.updater
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=scene>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=zone>
INFO:homeassistant.setup:Setup of domain image took 0.0 seconds
INFO:homeassistant.setup:Setup of domain media_source took 0.1 seconds
INFO:homeassistant.setup:Setup of domain system_health took 0.1 seconds
INFO:homeassistant.setup:Setup of domain config took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=image>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=media_source>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=system_health>
ERROR:homeassistant.setup:Setup failed for cloud: Unable to import component: No module named 'av'
INFO:homeassistant.setup:Setup of domain recorder took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config>
INFO:homeassistant.setup:Setting up network
INFO:homeassistant.setup:Setting up search
INFO:homeassistant.setup:Setup of domain search took 0.0 seconds
INFO:homeassistant.setup:Setting up analytics
INFO:homeassistant.helpers.entity_registry:Registered new binary_sensor.updater entity: binary_sensor.updater
DEBUG:homeassistant.core:Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=binary_sensor.updater>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=binary_sensor.updater, old_state=None, new_state=<state binary_sensor.updater=unavailable; friendly_name=Updater @ 2021-07-13T00:36:44.513365+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=recorder>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=search>
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
INFO:homeassistant.setup:Setup of domain analytics took 0.0 seconds
INFO:homeassistant.setup:Setting up person
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=analytics>
INFO:homeassistant.setup:Setting up history
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain history took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=history>
INFO:homeassistant.setup:Setting up ssdp
INFO:homeassistant.setup:Setup of domain ssdp took 0.0 seconds
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=ssdp>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO:homeassistant.setup:Setup of domain person took 0.0 seconds
DEBUG:async_upnp_client.ssdp:Creating socket on (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('0.0.0.0', 0)) to (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('239.255.255.250', 1900))
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=person>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/components/ssdp/__init__.py", line 244, in async_start
await asyncio.gather(
File "/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/search.py", line 91, in async_start
sock, source, self._target = get_ssdp_socket(self.source_ip, self.target_ip)
File "/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/ssdp.py", line 228, in get_ssdp_socket
sock.setsockopt(
OSError: [Errno 19] No such device
ERROR:homeassistant.setup:Setup failed for mobile_app: Unable to import component: No module named 'av'
INFO:homeassistant.setup:Setting up onboarding
INFO:homeassistant.setup:Setup of domain onboarding took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO:homeassistant.setup:Setting up frontend
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO:homeassistant.setup:Setup of domain frontend took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=frontend>
INFO:homeassistant.setup:Setting up logbook
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=logbook, service=log>
INFO:homeassistant.setup:Setting up map
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain map took 0.0 seconds
INFO:homeassistant.setup:Setting up my
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain my took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=map>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=my>
INFO:homeassistant.setup:Setup of domain logbook took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=logbook>
INFO:homeassistant.components.http:Now listening on port 8123
ERROR:homeassistant.setup:Unable to set up dependencies of default_config. Setup failed for dependencies: cloud, mobile_app, zeroconf
ERROR:homeassistant.setup:Setup failed for default_config: Could not set up all dependencies.
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded default_config from homeassistant.components.default_config
INFO homeassistant.loader:loader.py:349 Loaded automation from homeassistant.components.automation
INFO homeassistant.loader:loader.py:349 Loaded blueprint from homeassistant.components.blueprint
INFO homeassistant.loader:loader.py:349 Loaded trace from homeassistant.components.trace
INFO homeassistant.loader:loader.py:349 Loaded cloud from homeassistant.components.cloud
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded webhook from homeassistant.components.webhook
INFO homeassistant.loader:loader.py:349 Loaded counter from homeassistant.components.counter
INFO homeassistant.loader:loader.py:349 Loaded dhcp from homeassistant.components.dhcp
INFO homeassistant.loader:loader.py:349 Loaded frontend from homeassistant.components.frontend
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
INFO homeassistant.loader:loader.py:349 Loaded auth from homeassistant.components.auth
INFO homeassistant.loader:loader.py:349 Loaded config from homeassistant.components.config
INFO homeassistant.loader:loader.py:349 Loaded device_automation from homeassistant.components.device_automation
INFO homeassistant.loader:loader.py:349 Loaded lovelace from homeassistant.components.lovelace
INFO homeassistant.loader:loader.py:349 Loaded onboarding from homeassistant.components.onboarding
INFO homeassistant.loader:loader.py:349 Loaded analytics from homeassistant.components.analytics
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded person from homeassistant.components.person
INFO homeassistant.loader:loader.py:349 Loaded image from homeassistant.components.image
INFO homeassistant.loader:loader.py:349 Loaded search from homeassistant.components.search
INFO homeassistant.loader:loader.py:349 Loaded system_log from homeassistant.components.system_log
INFO homeassistant.loader:loader.py:349 Loaded history from homeassistant.components.history
INFO homeassistant.loader:loader.py:349 Loaded recorder from homeassistant.components.recorder
INFO homeassistant.loader:loader.py:349 Loaded input_boolean from homeassistant.components.input_boolean
INFO homeassistant.loader:loader.py:349 Loaded input_datetime from homeassistant.components.input_datetime
INFO homeassistant.loader:loader.py:349 Loaded input_number from homeassistant.components.input_number
INFO homeassistant.loader:loader.py:349 Loaded input_select from homeassistant.components.input_select
INFO homeassistant.loader:loader.py:349 Loaded input_text from homeassistant.components.input_text
INFO homeassistant.loader:loader.py:349 Loaded logbook from homeassistant.components.logbook
INFO homeassistant.loader:loader.py:349 Loaded map from homeassistant.components.map
INFO homeassistant.loader:loader.py:349 Loaded media_source from homeassistant.components.media_source
INFO homeassistant.loader:loader.py:349 Loaded mobile_app from homeassistant.components.mobile_app
INFO homeassistant.loader:loader.py:349 Loaded tag from homeassistant.components.tag
INFO homeassistant.loader:loader.py:349 Loaded my from homeassistant.components.my
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded scene from homeassistant.components.scene
INFO homeassistant.loader:loader.py:349 Loaded script from homeassistant.components.script
INFO homeassistant.loader:loader.py:349 Loaded ssdp from homeassistant.components.ssdp
INFO homeassistant.loader:loader.py:349 Loaded sun from homeassistant.components.sun
INFO homeassistant.loader:loader.py:349 Loaded system_health from homeassistant.components.system_health
INFO homeassistant.loader:loader.py:349 Loaded timer from homeassistant.components.timer
INFO homeassistant.loader:loader.py:349 Loaded updater from homeassistant.components.updater
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded zone from homeassistant.components.zone
DEBUG homeassistant.setup:setup.py:131 Dependency default_config will wait for dependencies ['automation', 'cloud', 'counter', 'dhcp', 'frontend', 'history', 'input_boolean', 'input_datetime', 'input_number', 'input_select', 'input_text', 'logbook', 'map', 'media_source', 'mobile_app', 'my', 'network', 'person', 'scene', 'script', 'ssdp', 'sun', 'system_health', 'tag', 'timer', 'updater', 'webhook', 'zeroconf', 'zone']
DEBUG homeassistant.setup:setup.py:131 Dependency automation will wait for dependencies ['blueprint', 'trace']
DEBUG homeassistant.setup:setup.py:131 Dependency cloud will wait for dependencies ['http', 'webhook']
INFO homeassistant.setup:setup.py:218 Setting up counter
DEBUG matplotlib:__init__.py:224 matplotlib data path: /nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data
DEBUG matplotlib:__init__.py:224 CONFIGDIR=/build/.config/matplotlib
DEBUG matplotlib:__init__.py:1394 matplotlib version 3.4.2
DEBUG matplotlib:__init__.py:1395 interactive is False
DEBUG matplotlib:__init__.py:1396 platform is linux
DEBUG matplotlib:__init__.py:1397 loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_warnings', '_frozen_importlib_external', '_io', 'marshal', 'posix', '_thread', '_weakref', 'time', 'zipimport', '_codecs', 'codecs', 'encodings.aliases', 'encodings', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', '_abc', 'abc', 'io', '_stat', 'stat', '_collections_abc', 'genericpath', 'posixpath', 'os.path', 'os', '_sitebuiltins', '_operator', 'operator', 'keyword', '_heapq', 'heapq', 'itertools', 'reprlib', '_collections', 'collections', '_functools', 'functools', 'sitecustomize', 'site', 'execnet._version', 'execnet.deprecated', '__future__', '_struct', 'struct', 'types', 'enum', '_sre', 'sre_constants', 'sre_parse', 'sre_compile', '_locale', 'copyreg', 're', 'token', 'tokenize', 'linecache', 'traceback', '_weakrefset', 'weakref', 'execnet.gateway_base', '_opcode', 'opcode', 'dis', 'collections.abc', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib', 'importlib.machinery', 'inspect', 'textwrap', 'execnet.gateway', 'execnet.gateway_bootstrap', 'atexit', 'threading', 'shlex', 'execnet.gateway_io', 'execnet.xspec', 'execnet.multi', '_hashlib', '_blake2', '_sha3', 'hashlib', '_queue', 'queue', 'execnet.rsync_remote', 'execnet.rsync', 'execnet', '_bootlocale', 'errno', 'py.error', 'py._error', 'py._vendored_packages', 'py._vendored_packages.apipkg.version', 'py._vendored_packages.apipkg', 'py._version', 'py.test', 'py.process', 'py.apipkg', 'py.iniconfig', 'py.path', 'py.code', 'py.builtin', 'py.io', 'py.xml', 'py.log', 'py', 'contextlib', 'typing.io', 'typing.re', 'typing', '_pytest._version', '_pytest', 'platform', 'attr._compat', 'copy', 'signal', '_posixsubprocess', 'select', 'math', 'selectors', 'subprocess', 'uuid', 'attr._config', 'attr.exceptions', 'attr.setters', 'attr._make', 'attr.converters', 'attr.filters', 'attr.validators', 'attr._cmp', 'attr._funcs', 'attr._version_info', 'attr._next_gen', 'attr', 'fnmatch', 'ntpath', 'urllib', 'urllib.parse', 'pathlib', '_pytest.outcomes', '_csv', 'csv', 'email', 'binascii', 'importlib.abc', 'importlib.util', 'zlib', '_compression', '_bz2', 'bz2', '_lzma', 'lzma', 'pwd', 'grp', 'shutil', 'zipfile', 'configparser', 'importlib.metadata', '_pytest.compat', '_pytest.warning_types', '_pytest.deprecated', 'pytest.collect', '_ast', 'ast', 'unicodedata', '_pytest._io.wcwidth', '_pytest._io.terminalwriter', '_pytest._io', 'pprint', '_pytest._io.saferepr', 'pluggy._version', 'pluggy._tracing', 'pluggy.callers', 'pluggy.hooks', 'pluggy.manager', 'pluggy', '_bisect', 'bisect', '_pytest._code.source', 'py._path', 'py._path.common', 'py._path.local', '_pytest._code.code', '_pytest._code', '_pytest.assertion.util', 'locale', 'gettext', 'argparse', '_pytest.hookspec', '_pytest.config.exceptions', 'iniconfig', '_pytest.pathlib', '_pytest.config.findpaths', '_pytest.store', '_pytest.config', '_pytest.mark.expression', '_pytest.mark.structures', '_pytest.config.argparsing', '_pytest.mark', '_pytest.nodes', '_pytest.fixtures', '_pytest.reports', 'bdb', '_pytest.timing', '_pytest.runner', '_pytest.main', '_pytest.assertion.rewrite', '_pytest.assertion.truncate', '_pytest.assertion', '_json', 'json.scanner', 'json.decoder', 'json.encoder', 'json', '_pytest.python', '_pytest.cacheprovider', '_sha512', '_random', 'random', 'tempfile', '_pytest.capture', '_pytest.debugging', '_pytest.freeze_support', '_string', 'string', 'logging', '_datetime', 'datetime', '_pytest.terminal', '_pytest.logging', '_pytest.monkeypatch', 'gc', '_pytest.tmpdir', '_pytest.pytester', 'numbers', '_decimal', 'decimal', '_pytest.python_api', '_pytest.recwarn', 'pytest', '_pytest.helpconfig', '_pytest.skipping', '_pytest.unittest', '_pytest.pastebin', '_pytest.nose', 'xml', 'xml.etree', 'xml.etree.ElementPath', 'pyexpat.errors', 'pyexpat.model', 'pyexpat', '_pytest.junitxml', '_pytest.doctest', '_pytest.setuponly', '_pytest.setupplan', '_pytest.stepwise', '_pytest.warnings', '_pytest.unraisableexception', '_pytest.threadexception', '_pytest.faulthandler', 'glob', '_pytest._argcomplete', 'toml.tz', 'toml.decoder', 'toml.encoder', 'toml', 'multidict._abc', 'multidict._multidict_base', 'multidict._multidict', 'multidict._compat', 'multidict', 'aiohttp.hdrs', 'concurrent', 'concurrent.futures._base', 'concurrent.futures', '_socket', 'socket', '_ssl', 'base64', 'ssl', 'asyncio.constants', 'asyncio.format_helpers', 'asyncio.base_futures', 'asyncio.log', 'asyncio.coroutines', '_contextvars', 'contextvars', 'asyncio.exceptions', 'asyncio.base_tasks', '_asyncio', 'asyncio.events', 'asyncio.futures', 'asyncio.protocols', 'asyncio.transports', 'asyncio.sslproto', 'asyncio.locks', 'asyncio.tasks', 'asyncio.staggered', 'asyncio.trsock', 'asyncio.base_events', 'asyncio.runners', 'asyncio.queues', 'asyncio.streams', 'asyncio.subprocess', 'asyncio.base_subprocess', 'asyncio.selector_events', 'asyncio.unix_events', 'asyncio', 'ipaddress', 'idna.package_data', 'idna.idnadata', 'idna.intranges', 'idna.core', 'idna', 'cython_runtime', 'yarl._quoting_c', 'yarl._quoting', 'yarl._url', 'yarl', 'http', 'calendar', 'email._parseaddr', 'email.base64mime', 'email.quoprimime', 'email.errors', 'quopri', 'email.encoders', 'email.charset', 'email.utils', 'html.entities', 'html', 'email.header', 'email._policybase', 'email.feedparser', 'email.parser', 'uu', 'email._encoded_words', 'email.iterators', 'email.message', 'http.client', 'mimetypes', 'socketserver', 'http.server', 'aiohttp.typedefs', 'aiohttp.http_exceptions', 'aiohttp.tcp_helpers', 'aiohttp.base_protocol', 'cgi', 'netrc', 'urllib.response', 'urllib.error', 'urllib.request', 'async_timeout', 'typing_extensions', 'aiohttp.log', 'aiohttp._helpers', 'aiohttp.helpers', 'http.cookies', 'aiohttp.abc', 'aiohttp._http_writer', 'aiohttp.http_writer', 'aiohttp.streams', '_brotli', 'brotli', '_cython_0_29_21', 'aiohttp._http_parser', 'aiohttp.http_parser', 'aiohttp._websocket', 'aiohttp.http_websocket', 'aiohttp.http', 'aiohttp.payload', 'aiohttp.client_exceptions', 'aiohttp.multipart', 'aiohttp.formdata', 'chardet.enums', 'chardet.charsetprober', 'chardet.charsetgroupprober', 'chardet.codingstatemachine', 'chardet.escsm', 'chardet.escprober', 'chardet.latin1prober', 'chardet.mbcssm', 'chardet.utf8prober', 'chardet.mbcharsetprober', 'chardet.euctwfreq', 'chardet.euckrfreq', 'chardet.gb2312freq', 'chardet.big5freq', 'chardet.jisfreq', 'chardet.chardistribution', 'chardet.jpcntx', 'chardet.sjisprober', 'chardet.eucjpprober', 'chardet.gb2312prober', 'chardet.euckrprober', 'chardet.cp949prober', 'chardet.big5prober', 'chardet.euctwprober', 'chardet.mbcsgroupprober', 'chardet.hebrewprober', 'chardet.sbcharsetprober', 'chardet.langbulgarianmodel', 'chardet.langgreekmodel', 'chardet.langhebrewmodel', 'chardet.langrussianmodel', 'chardet.langthaimodel', 'chardet.langturkishmodel', 'chardet.sbcsgroupprober', 'chardet.universaldetector', 'chardet.version', 'chardet', 'aiohttp.client_reqrep', 'aiohttp.client_ws', 'aiohttp.client_proto', 'aiohttp.locks', 'aiohttp.resolver', 'aiohttp.connector', '_compat_pickle', '_pickle', 'pickle', 'aiohttp.cookiejar', 'aiohttp._frozenlist', 'aiohttp.frozenlist', 'aiohttp.signals', 'aiohttp.tracing', 'aiohttp.client', 'aiohttp.payload_streamer', 'aiohttp', 'aiohttp.web_response', 'aiohttp.web_exceptions', 'aiohttp.web_request', 'aiohttp.web_log', 'aiohttp.web_fileresponse', 'aiohttp.web_routedef', 'aiohttp.web_urldispatcher', 'aiohttp.web_middlewares', 'aiohttp.web_protocol', 'aiohttp.web_server', 'aiohttp.web_app', 'aiohttp.web_runner', 'aiohttp.web_ws', 'aiohttp.web', 'unittest.util', 'unittest.result', 'difflib', 'unittest.case', 'unittest.async_case', 'unittest.suite', 'unittest.loader', 'unittest.signals', 'unittest.runner', 'unittest.main', 'unittest', 'unittest.mock', 'aiohttp.test_utils', 'aiohttp.pytest_plugin', 'pytest_aiohttp', 'pytest_mock._util', 'pytest_mock.plugin', 'pytest_mock', 'pkgutil', 'xml.parsers', 'xml.parsers.expat.model', 'xml.parsers.expat.errors', 'xml.parsers.expat', 'plistlib', 'pkg_resources.extern', 'pkg_resources._vendor', 'pkg_resources._vendor.appdirs', 'pkg_resources.extern.appdirs', 'pkg_resources._vendor.packaging.__about__', 'pkg_resources._vendor.packaging', 'pkg_resources.extern.packaging', 'pkg_resources.extern.packaging._structures', 'pkg_resources.extern.packaging._typing', 'pkg_resources.extern.packaging.version', 'pkg_resources.extern.packaging._compat', 'pkg_resources.extern.packaging.utils', 'pkg_resources.extern.packaging.specifiers', 'pkg_resources._vendor.pyparsing', 'pkg_resources.extern.pyparsing', 'pkg_resources.extern.packaging.markers', 'pkg_resources.extern.packaging.requirements', 'sysconfig', 'pkg_resources', 'pytest_rerunfailures', 'xdist.plugin', 'xdist._version', 'xdist', 'xdist.newhooks', 'xdist.looponfail', 'pytest_forked', 'urllib3.packages.ssl_match_hostname', 'urllib3.packages', 'urllib3.packages.six', 'urllib3.packages.six.moves', 'urllib3.packages.six.moves.http_client', 'urllib3.exceptions', 'urllib3._version', 'urllib3.contrib', 'urllib3.contrib._appengine_environ', 'urllib3.util.wait', 'urllib3.util.connection', 'urllib3.util.request', 'urllib3.util.response', 'urllib3.util.retry', 'hmac', 'urllib3.util.url', 'urllib3.util.ssltransport', 'urllib3.util.ssl_', 'urllib3.util.timeout', 'urllib3.util', 'urllib3.util.proxy', 'urllib3._collections', 'urllib3.connection', 'urllib3.fields', 'urllib3.filepost', 'urllib3.packages.six.moves.urllib', 'urllib3.packages.six.moves.urllib.parse', 'urllib3.request', 'urllib3.response', 'urllib3.util.queue', 'urllib3.connectionpool', 'urllib3.poolmanager', 'urllib3', 'requests.exceptions', 'requests.__version__', 'importlib.resources', 'certifi.core', 'certifi', 'requests.certs', 'simplejson.errors', 'simplejson.raw_json', 'simplejson.compat', 'simplejson._speedups', 'simplejson.scanner', 'simplejson.decoder', 'simplejson.encoder', 'simplejson', 'http.cookiejar', 'requests.compat', 'requests._internal_utils', 'requests.cookies', 'requests.structures', 'requests.utils', 'requests.packages.urllib3.packages.ssl_match_hostname', 'requests.packages.urllib3.packages', 'requests.packages.urllib3.packages.six', 'requests.packages.urllib3.packages.six.moves', 'requests.packages.urllib3.packages.six.moves.http_client', 'requests.packages.urllib3.exceptions', 'requests.packages.urllib3._version', 'requests.packages.urllib3.contrib', 'requests.packages.urllib3.contrib._appengine_environ', 'requests.packages.urllib3.util.wait', 'requests.packages.urllib3.util.connection', 'requests.packages.urllib3.util.request', 'requests.packages.urllib3.util.response', 'requests.packages.urllib3.util.retry', 'requests.packages.urllib3.util.url', 'requests.packages.urllib3.util.ssltransport', 'requests.packages.urllib3.util.ssl_', 'requests.packages.urllib3.util.timeout', 'requests.packages.urllib3.util', 'requests.packages.urllib3.util.proxy', 'requests.packages.urllib3._collections', 'requests.packages.urllib3.connection', 'requests.packages.urllib3.fields', 'requests.packages.urllib3.filepost', 'requests.packages.urllib3.packages.six.moves.urllib', 'requests.packages.urllib3.packages.six.moves.urllib.parse', 'requests.packages.urllib3.request', 'requests.packages.urllib3.response', 'requests.packages.urllib3.util.queue', 'requests.packages.urllib3.connectionpool', 'requests.packages.urllib3.poolmanager', 'requests.packages.urllib3', 'requests.packages.idna.package_data', 'requests.packages.idna.idnadata', 'requests.packages.idna.intranges', 'requests.packages.idna.core', 'requests.packages.idna', 'requests.packages.chardet.enums', 'requests.packages.chardet.charsetprober', 'requests.packages.chardet.charsetgroupprober', 'requests.packages.chardet.codingstatemachine', 'requests.packages.chardet.escsm', 'requests.packages.chardet.escprober', 'requests.packages.chardet.latin1prober', 'requests.packages.chardet.mbcssm', 'requests.packages.chardet.utf8prober', 'requests.packages.chardet.mbcharsetprober', 'requests.packages.chardet.euctwfreq', 'requests.packages.chardet.euckrfreq', 'requests.packages.chardet.gb2312freq', 'requests.packages.chardet.big5freq', 'requests.packages.chardet.jisfreq', 'requests.packages.chardet.chardistribution', 'requests.packages.chardet.jpcntx', 'requests.packages.chardet.sjisprober', 'requests.packages.chardet.eucjpprober', 'requests.packages.chardet.gb2312prober', 'requests.packages.chardet.euckrprober', 'requests.packages.chardet.cp949prober', 'requests.packages.chardet.big5prober', 'requests.packages.chardet.euctwprober', 'requests.packages.chardet.mbcsgroupprober', 'requests.packages.chardet.hebrewprober', 'requests.packages.chardet.sbcharsetprober', 'requests.packages.chardet.langbulgarianmodel', 'requests.packages.chardet.langgreekmodel', 'requests.packages.chardet.langhebrewmodel', 'requests.packages.chardet.langrussianmodel', 'requests.packages.chardet.langthaimodel', 'requests.packages.chardet.langturkishmodel', 'requests.packages.chardet.sbcsgroupprober', 'requests.packages.chardet.universaldetector', 'requests.packages.chardet.version', 'requests.packages.chardet', 'requests.packages', 'stringprep', 'encodings.idna', 'requests.hooks', 'requests.auth', 'requests.status_codes', 'requests.models', 'socks', 'urllib3.contrib.socks', 'requests.adapters', 'requests.sessions', 'requests.api', 'requests', 'six', 'six.moves', 'six.moves.urllib', 'requests_mock.exceptions', 'requests_mock.request', 'requests_mock.compat', 'requests_mock.response', 'requests_mock.adapter', 'requests_mock.mocker', 'requests_mock', 'requests_mock.contrib', 'distutils', 'distutils.version', 'requests_mock.contrib._pytest_plugin', 'anyio._core', 'anyio._core._compat', 'sniffio._version', 'sniffio._impl', 'sniffio', 'anyio._core._eventloop', 'anyio._core._exceptions', 'anyio.abc._resources', 'anyio._core._typedattr', 'anyio.abc._tasks', 'anyio.abc._streams', 'anyio.abc._sockets', 'anyio.abc._subprocesses', 'anyio.abc._testing', 'dataclasses', 'anyio.lowlevel', 'anyio._core._tasks', 'anyio._core._testing', 'anyio._core._synchronization', 'concurrent.futures.thread', 'anyio.from_thread', 'anyio.abc', 'anyio.to_thread', 'anyio._core._fileio', 'anyio._core._resources', 'anyio._core._signals', 'anyio.streams', 'anyio.streams.stapled', 'anyio.streams.tls', 'anyio._core._sockets', 'anyio.streams.memory', 'anyio._core._streams', 'anyio._core._subprocesses', 'anyio', 'anyio.pytest_plugin', 'tests', 'homeassistant', 'voluptuous.error', 'voluptuous.schema_builder', 'voluptuous.validators', 'voluptuous.util', 'voluptuous', 'slugify.special', 'text_unidecode', 'slugify.slugify', 'slugify', 'homeassistant.const', 'homeassistant.helpers', 'homeassistant.exceptions', 'homeassistant.helpers.frame', 'homeassistant.helpers.deprecation', 'ciso8601', 'backports', 'backports.zoneinfo._tzpath', 'backports.zoneinfo._common', 'backports.zoneinfo._version', 'backports.zoneinfo._czoneinfo', 'backports.zoneinfo', 'homeassistant.util.dt', 'homeassistant.util', 'homeassistant.util.async_', 'homeassistant.block_async_io', 'awesomeversion.exceptions', 'awesomeversion.comparehandlers', 'awesomeversion.strategy', 'awesomeversion.comparehandlers.base', 'awesomeversion.comparehandlers.container', 'awesomeversion.match', 'awesomeversion.comparehandlers.sections', 'awesomeversion.comparehandlers.devrc', 'awesomeversion.comparehandlers.modifier', 'awesomeversion.comparehandlers.simple', 'awesomeversion.handlers', 'awesomeversion.awesomeversion', 'awesomeversion', 'homeassistant.generated', 'homeassistant.generated.dhcp', 'homeassistant.generated.mqtt', 'homeassistant.generated.ssdp', 'homeassistant.generated.zeroconf', 'homeassistant.loader', 'homeassistant.util.location', 'homeassistant.util.timeout', 'homeassistant.util.distance', 'homeassistant.util.pressure', 'homeassistant.util.temperature', 'homeassistant.util.volume', 'homeassistant.util.unit_system', 'homeassistant.util.uuid', 'homeassistant.core', 'logging.handlers', 'voluptuous.humanize', 'jwt.compat', 'jwt.exceptions', 'cryptography.__about__', 'cryptography', 'cryptography.hazmat', 'cryptography.hazmat.primitives', 'cryptography.hazmat.primitives.asymmetric', 'cryptography.utils', 'cryptography.hazmat._der', 'cryptography.exceptions', 'cryptography.hazmat.backends', 'cryptography.hazmat.backends.interfaces', 'cryptography.hazmat.primitives.hashes', 'cryptography.hazmat.primitives.asymmetric.utils', 'jwt.utils', 'cryptography.hazmat.primitives._serialization', 'cryptography.hazmat.primitives.asymmetric.dsa', 'cryptography.hazmat._oid', 'cryptography.hazmat.primitives.asymmetric.ec', 'cryptography.hazmat.primitives.asymmetric.ed25519', 'cryptography.hazmat.primitives.asymmetric.ed448', 'cryptography.hazmat.primitives._asymmetric', 'cryptography.hazmat.primitives.asymmetric.rsa', 'cryptography.hazmat._types', 'cryptography.hazmat.primitives.asymmetric.dh', 'cryptography.hazmat.primitives.serialization.base', 'cryptography.hazmat.primitives._cipheralgorithm', 'cryptography.hazmat.primitives.ciphers.modes', 'cryptography.hazmat.primitives.ciphers.base', 'cryptography.hazmat.primitives.ciphers', 'cryptography.hazmat.primitives.ciphers.algorithms', '_cffi_backend', '_bcrypt.lib', '_bcrypt', 'bcrypt._bcrypt', 'bcrypt.__about__', 'bcrypt', 'cryptography.hazmat.primitives.serialization.ssh', 'cryptography.hazmat.primitives.serialization', 'cryptography.hazmat.primitives.asymmetric.padding', 'jwt.algorithms', 'jwt.api_jws', 'jwt.api_jwt', 'jwt', 'homeassistant.data_entry_flow', 'homeassistant.auth.const', 'secrets', 'homeassistant.auth.permissions.const', 'homeassistant.auth.permissions.models', 'homeassistant.auth.permissions.types', 'homeassistant.auth.permissions.util', 'homeassistant.auth.permissions.entities', 'homeassistant.auth.permissions.merge', 'homeassistant.auth.permissions', 'homeassistant.auth.models', 'homeassistant.auth.permissions.system_policies', 'homeassistant.auth.auth_store', 'homeassistant.helpers.typing', 'homeassistant.util.package', 'homeassistant.requirements', 'homeassistant.util.decorator', 'homeassistant.auth.mfa_modules', 'homeassistant.auth.providers', 'homeassistant.auth', 'voluptuous_serialize', 'jinja2.bccache', 'markupsafe._speedups', 'markupsafe', 'jinja2.utils', 'jinja2.nodes', 'jinja2.exceptions', 'jinja2.visitor', 'jinja2.idtracking', 'jinja2.optimizer', 'jinja2.compiler', 'jinja2.async_utils', 'jinja2.runtime', 'jinja2.filters', 'jinja2.tests', 'jinja2.defaults', 'jinja2._identifier', 'jinja2.lexer', 'jinja2.parser', 'jinja2.environment', 'jinja2.loaders', 'jinja2', 'jinja2.sandbox', 'homeassistant.helpers.debounce', 'homeassistant.helpers.device_registry', 'homeassistant.util.yaml.const', 'yaml.error', 'yaml.tokens', 'yaml.events', 'yaml.nodes', 'yaml.reader', 'yaml.scanner', 'yaml.parser', 'yaml.composer', 'yaml.constructor', 'yaml.resolver', 'yaml.loader', 'yaml.emitter', 'yaml.serializer', 'yaml.representer', 'yaml.dumper', 'yaml._yaml', 'yaml.cyaml', 'yaml', 'homeassistant.util.yaml.objects', 'homeassistant.util.yaml.dumper', 'homeassistant.util.yaml.input', 'homeassistant.util.yaml.loader', 'homeassistant.util.yaml', 'homeassistant.helpers.entity_registry', 'homeassistant.helpers.location', '_ctypes', 'ctypes._endian', 'ctypes', 'homeassistant.util.thread', 'homeassistant.helpers.template', 'homeassistant.helpers.script_variables', 'homeassistant.helpers.logging', 'homeassistant.helpers.config_validation', 'homeassistant.helpers.entity_values', 'homeassistant.config', 'homeassistant.helpers.ratelimit', 'homeassistant.helpers.sun', 'homeassistant.helpers.event', 'timeit', 'homeassistant.setup', 'homeassistant.config_entries', 'homeassistant.components', 'homeassistant.util.json', 'homeassistant.helpers.storage', 'homeassistant.util.ssl', 'homeassistant.components.http.const', 'homeassistant.components.http.auth', 'homeassistant.helpers.json', 'homeassistant.components.http.view', 'homeassistant.components.http.ban', 'homeassistant.components.http.cors', 'homeassistant.components.http.forwarded', 'homeassistant.components.http.request_context', 'homeassistant.components.http.security_filter', 'homeassistant.components.http.static', 'homeassistant.components.http.web_runner', 'homeassistant.components.http', 'homeassistant.helpers.area_registry', 'homeassistant.util.logging', 'homeassistant.helpers.dispatcher', 'homeassistant.bootstrap', 'homeassistant.util.executor', 'homeassistant.runner', 'homeassistant.auth.providers.homeassistant', 'homeassistant.auth.providers.legacy_api_password', 'homeassistant.components.websocket_api.const', 'homeassistant.helpers.service', 'homeassistant.helpers.entity_platform', 'homeassistant.helpers.entity', 'homeassistant.components.websocket_api.messages', 'homeassistant.components.websocket_api.connection', 'homeassistant.components.websocket_api.decorators', 'homeassistant.components.websocket_api.commands', 'homeassistant.components.websocket_api.error', 'homeassistant.components.websocket_api.auth', 'homeassistant.components.websocket_api.http', 'homeassistant.components.websocket_api', 'homeassistant.components.mqtt.const', 'homeassistant.components.mqtt.models', 'homeassistant.components.mqtt.debug_info', 'homeassistant.components.mqtt.abbreviations', 'homeassistant.components.mqtt.discovery', 'homeassistant.components.mqtt.util', 'homeassistant.components.mqtt', '_sqlite3', 'sqlite3.dbapi2', 'sqlite3', 'sqlalchemy.util.compat', 'sqlalchemy.cimmutabledict', 'sqlalchemy.util._collections', 'sqlalchemy.util._preloaded', 'greenlet._greenlet', 'greenlet', 'sqlalchemy.exc', 'sqlalchemy.util.langhelpers', 'sqlalchemy.util._concurrency_py3k', 'sqlalchemy.util.concurrency', 'sqlalchemy.util.deprecations', 'sqlalchemy.util', 'sqlalchemy.sql.roles', 'sqlalchemy.sql.visitors', 'sqlalchemy.sql.operators', 'sqlalchemy.inspection', 'sqlalchemy.sql.traversals', 'sqlalchemy.sql.base', 'sqlalchemy.sql.coercions', 'sqlalchemy.sql.type_api', 'sqlalchemy.sql.annotation', 'sqlalchemy.sql.elements', 'sqlalchemy.event.legacy', 'sqlalchemy.event.registry', 'sqlalchemy.event.attr', 'sqlalchemy.event.base', 'sqlalchemy.event.api', 'sqlalchemy.event', 'sqlalchemy.cprocessors', 'sqlalchemy.processors', 'sqlalchemy.sql.sqltypes', 'sqlalchemy.types', 'sqlalchemy.util.topological', 'sqlalchemy.sql.ddl', 'sqlalchemy.sql.selectable', 'sqlalchemy.sql.schema', 'sqlalchemy.sql.util', 'sqlalchemy.sql.dml', 'sqlalchemy.sql.crud', 'sqlalchemy.sql.functions', 'sqlalchemy.sql.compiler', 'sqlalchemy.sql.lambdas', 'sqlalchemy.sql.expression', 'sqlalchemy.sql.events', 'sqlalchemy.sql.default_comparator', 'sqlalchemy.sql.naming', 'sqlalchemy.sql', 'sqlalchemy.engine.interfaces', 'sqlalchemy.engine.util', 'sqlalchemy.log', 'sqlalchemy.engine.base', 'sqlalchemy.engine.events', 'sqlalchemy.dialects', 'sqlalchemy.engine.url', 'sqlalchemy.engine.mock', 'sqlalchemy.pool.base', 'sqlalchemy.pool.events', 'sqlalchemy.util.queue', 'sqlalchemy.pool.impl', 'sqlalchemy.pool.dbapi_proxy', 'sqlalchemy.pool', 'sqlalchemy.engine.create', 'sqlalchemy.cresultproxy', 'sqlalchemy.engine.row', 'sqlalchemy.engine.result', 'sqlalchemy.engine.cursor', 'sqlalchemy.engine.reflection', 'sqlalchemy.engine', 'sqlalchemy.schema', 'sqlalchemy.events', 'sqlalchemy.engine.characteristics', 'sqlalchemy.engine.default', 'sqlalchemy', 'sqlalchemy.orm.exc', 'sqlalchemy.orm.base', 'sqlalchemy.orm.collections', 'sqlalchemy.orm.path_registry', 'sqlalchemy.orm.interfaces', 'sqlalchemy.orm.attributes', 'sqlalchemy.orm.state', 'sqlalchemy.orm.instrumentation', 'sqlalchemy.orm.util', 'sqlalchemy.orm.strategy_options', 'sqlalchemy.future.engine', 'sqlalchemy.future', 'sqlalchemy.orm.loading', 'sqlalchemy.orm.descriptor_props', 'sqlalchemy.orm.relationships', 'sqlalchemy.orm.properties', 'sqlalchemy.orm.mapper', 'sqlalchemy.orm.context', 'sqlalchemy.orm.clsregistry', 'sqlalchemy.orm.decl_base', 'sqlalchemy.orm.decl_api', 'sqlalchemy.orm.identity', 'sqlalchemy.orm.query', 'sqlalchemy.orm.evaluator', 'sqlalchemy.orm.sync', 'sqlalchemy.orm.persistence', 'sqlalchemy.orm.unitofwork', 'sqlalchemy.orm.session', 'sqlalchemy.orm.scoping', 'sqlalchemy.orm.events', 'sqlalchemy.orm.strategies', 'sqlalchemy.orm.dynamic', 'sqlalchemy.orm.dependency', 'sqlalchemy.ext.baked', 'sqlalchemy.ext', 'sqlalchemy.orm', 'homeassistant.components.persistent_notification', 'homeassistant.helpers.entityfilter', 'homeassistant.helpers.integration_platform', 'array', 'sqlalchemy.dialects.mysql.types', 'sqlalchemy.dialects.mysql.enumerated', 'sqlalchemy.dialects.mysql.reflection', 'sqlalchemy.dialects.mysql.json', 'sqlalchemy.dialects.mysql.base', 'sqlalchemy.dialects.mysql.mysqldb', 'sqlalchemy.dialects.mysql.cymysql', 'sqlalchemy.dialects.mysql.mariadbconnector', 'sqlalchemy.dialects.mysql.mysqlconnector', 'sqlalchemy.dialects.mysql.oursql', 'sqlalchemy.dialects.mysql.pymysql', 'sqlalchemy.connectors', 'sqlalchemy.connectors.pyodbc', 'sqlalchemy.dialects.mysql.pyodbc', 'sqlalchemy.dialects.mysql.dml', 'sqlalchemy.dialects.mysql.aiomysql', 'sqlalchemy.dialects.mysql', 'sqlalchemy.ext.declarative.extensions', 'sqlalchemy.ext.declarative', 'homeassistant.components.recorder.models', 'homeassistant.components.recorder.const', 'homeassistant.components.recorder.util', 'homeassistant.components.recorder.history', 'homeassistant.components.recorder.migration', 'homeassistant.components.recorder.repack', 'homeassistant.components.recorder.purge', 'homeassistant.components.recorder.statistics', 'homeassistant.components.recorder.pool', 'homeassistant.components.recorder', 'homeassistant.util.network', 'homeassistant.helpers.network', 'homeassistant.helpers.aiohttp_client', 'homeassistant.helpers.config_entry_oauth2_flow', 'tests.ignore_uncaught_exceptions', 'homeassistant.components.device_automation.exceptions', 'homeassistant.components.device_automation', 'homeassistant.helpers.intent', 'homeassistant.helpers.singleton', 'homeassistant.helpers.restore_state', 'tests.common', 'tests.test_util', 'tests.test_util.aiohttp', 'tests.conftest', 'py._builtin', 'tests.components', 'tests.components.conftest', 'tests.components.hue', 'aiohue.clip', 'aiohue.config', 'aiohue.errors', 'aiohue.api', 'aiohue.groups', 'aiohue.lights', 'aiohue.scenes', 'aiohue.sensors', 'aiohue.bridge', 'aiohue', 'aiohue.util', 'homeassistant.components.hue.const', 'homeassistant.components.hue.errors', 'homeassistant.components.hue.helpers', 'homeassistant.helpers.discovery', 'homeassistant.helpers.entity_component', 'homeassistant.components.sensor', 'homeassistant.helpers.update_coordinator', 'homeassistant.components.hue.sensor_device', 'homeassistant.components.hue.hue_event', 'homeassistant.components.hue.sensor_base', 'homeassistant.components.hue.bridge', 'homeassistant.components.hue', 'tests.components.light', 'colorsys', 'homeassistant.util.color', 'homeassistant.components.light', 'tests.components.light.conftest', 'tests.components.hue.conftest', 'tests.components.recorder', 'tests.components.recorder.common', 'tests.components.recorder.conftest', 'tests.components.zeroconf', 'tests.components.zeroconf.conftest', 'py._log', 'syslog', 'py._log.log', 'faulthandler', 'cmd', 'codeop', 'code', 'pdb', 'py._code', 'py._code.code', 'tests.helpers', 'tests.helpers.conftest', 'tests.test_bootstrap', 'encodings.unicode_escape', 'homeassistant.helpers.check_config', 'tests.test_config', 'tests.test_config_entries', 'tests.test_core', 'tests.test_data_entry_flow', 'tests.test_exceptions', 'homeassistant.components.hue.light', 'tests.test_loader', 'homeassistant.__main__', 'tests.test_main', 'tests.test_requirements', 'tests.test_runner', 'tests.test_setup', 'tests.auth', 'tests.auth.test_auth_store', 'tests.auth.test_init', 'tests.auth.test_models', 'tests.auth.mfa_modules', 'tests.auth.mfa_modules.test_insecure_example', 'tests.auth.mfa_modules.test_totp', 'tests.auth.permissions', 'tests.auth.permissions.test_entities', 'tests.auth.permissions.test_merge', 'tests.auth.permissions.test_system_policies', 'tests.auth.permissions.test_util', 'tests.auth.providers', 'homeassistant.auth.providers.command_line', 'tests.auth.providers.test_command_line', 'tests.auth.providers.test_homeassistant', 'homeassistant.auth.providers.insecure_example', 'tests.auth.providers.test_insecure_example', 'tests.auth.providers.test_legacy_api_password', 'homeassistant.auth.providers.trusted_networks', 'tests.auth.providers.test_trusted_networks', 'tests.hassfest', 'script', 'script.hassfest', 'script.hassfest.model', 'script.hassfest.dependencies', 'tests.hassfest.test_dependencies', 'script.hassfest.manifest', 'tests.hassfest.test_version', 'tests.helpers.test_aiohttp_client', 'tests.helpers.test_area_registry', 'tests.helpers.test_check_config', 'homeassistant.helpers.collection', 'tests.helpers.test_collection', 'homeassistant.components.sun', 'homeassistant.components.blueprint.const', 'homeassistant.components.blueprint.errors', 'homeassistant.helpers.selector', 'homeassistant.components.blueprint.schemas', 'homeassistant.components.blueprint.models', 'homeassistant.components.blueprint.importer', 'homeassistant.components.blueprint.websocket_api', 'homeassistant.components.blueprint', 'homeassistant.components.zone.const', 'homeassistant.components.zone', 'homeassistant.helpers.trace', 'homeassistant.helpers.condition', 'homeassistant.components.scene', 'homeassistant.components.logger', 'homeassistant.helpers.trigger', 'homeassistant.helpers.script', 'homeassistant.components.trace.const', 'homeassistant.components.trace.websocket_api', 'homeassistant.components.trace.utils', 'homeassistant.components.trace', 'homeassistant.components.automation.const', 'homeassistant.components.automation.helpers', 'homeassistant.components.automation.config', 'homeassistant.components.automation.trace', 'homeassistant.components.automation', 'tests.helpers.test_condition', 'homeassistant.helpers.config_entry_flow', 'tests.helpers.test_config_entry_flow', 'tests.helpers.test_config_entry_oauth2_flow', 'tests.helpers.test_config_validation', 'tests.helpers.test_debounce', 'tests.helpers.test_deprecation', 'tests.helpers.test_device_registry', 'tests.helpers.test_discovery', 'tests.helpers.test_dispatcher', 'tests.helpers.test_entity', 'tests.helpers.test_entity_component', 'tests.helpers.test_entity_platform', 'tests.helpers.test_entity_registry', 'tests.helpers.test_entity_values', 'tests.helpers.test_entityfilter', 'pytz.exceptions', 'pytz.lazy', 'pytz.tzinfo', 'pytz.tzfile', 'pytz', 'astral', 'astral.sun', 'tests.helpers.test_event', 'tests.helpers.test_frame', 'httpx.__version__', 'httpx._exceptions', 'rfc3986.compat', 'rfc3986.exceptions', 'rfc3986.abnf_regexp', 'rfc3986.misc', 'rfc3986.normalizers', 'rfc3986.validators', 'rfc3986._mixin', 'rfc3986.uri', 'rfc3986.iri', 'rfc3986.parseresult', 'rfc3986.api', 'rfc3986', 'httpx._transports', 'httpx._transports.base', 'httpx._types', 'httpx._utils', 'httpx._multipart', 'httpx._content', 'httpx._decoders', 'httpx._status_codes', 'httpx._models', 'httpx._auth', 'httpx._compat', 'httpx._config', 'httpx._transports.asgi', 'httpcore._async', 'httpcore._types', 'httpcore._async.base', 'httpcore._backends', 'httpcore._backends.base', 'httpcore._exceptions', 'httpcore._utils', 'httpcore._backends.sync', 'httpcore._backends.auto', 'httpcore._threadlock', 'httpcore._async.http', 'h11._abnf', 'h11._util', 'h11._headers', 'h11._events', 'h11._state', 'h11._readers', 'h11._receivebuffer', 'h11._writers', 'h11._connection', 'h11._version', 'h11', 'httpcore._sync', 'httpcore._sync.base', 'httpcore._bytestreams', 'httpcore._async.http11', 'httpcore._async.connection', 'httpcore._async.connection_pool', 'httpcore._async.http_proxy', 'httpcore._sync.http', 'httpcore._sync.http11', 'httpcore._sync.connection', 'httpcore._sync.connection_pool', 'httpcore._sync.http_proxy', 'httpcore', 'httpx._transports.default', 'httpx._transports.wsgi', 'httpx._client', 'httpx._api', 'httpx._transports.mock', 'httpx', 'homeassistant.helpers.httpx_client', 'tests.helpers.test_httpx_client', 'tests.helpers.test_icon', 'tests.helpers.test_init', 'tests.helpers.test_instance_id', 'tests.helpers.test_integration_platform', 'tests.helpers.test_intent', 'tests.helpers.test_json', 'tests.helpers.test_location', 'fcntl', 'atomicwrites', 'jose.exceptions', 'jose', 'cryptography.hazmat.bindings', 'cryptography.hazmat.bindings.openssl', '_openssl.lib', '_openssl', 'cryptography.hazmat.bindings._openssl', 'cryptography.hazmat.bindings.openssl._conditional', 'cryptography.hazmat.bindings.openssl.binding', 'cryptography.hazmat.primitives.hmac', 'cryptography.x509.certificate_transparency', 'cryptography.hazmat.primitives.constant_time', 'cryptography.x509.oid', 'cryptography.x509.name', 'cryptography.x509.general_name', 'cryptography.x509.extensions', 'cryptography.x509.base', 'cryptography.x509', 'cryptography.hazmat.backends.openssl.aead', 'cryptography.hazmat.backends.openssl.ciphers', 'cryptography.hazmat.backends.openssl.cmac', 'cryptography.hazmat.backends.openssl.decode_asn1', 'cryptography.hazmat.backends.openssl.dh', 'cryptography.hazmat.backends.openssl.utils', 'cryptography.hazmat.backends.openssl.dsa', 'cryptography.hazmat.backends.openssl.ec', 'cryptography.hazmat.backends.openssl.ed25519', 'cryptography.hazmat.backends.openssl.ed448', 'cryptography.hazmat.backends.openssl.encode_asn1', 'cryptography.hazmat.backends.openssl.hashes', 'cryptography.hazmat.backends.openssl.hmac', 'cryptography.hazmat.backends.openssl.rsa', 'cryptography.hazmat.backends.openssl.x509', 'cryptography.x509.ocsp', 'cryptography.hazmat.backends.openssl.ocsp', 'cryptography.hazmat.backends.openssl.poly1305', 'cryptography.hazmat.primitives.asymmetric.x25519', 'cryptography.hazmat.backends.openssl.x25519', 'cryptography.hazmat.primitives.asymmetric.x448', 'cryptography.hazmat.backends.openssl.x448', 'cryptography.hazmat.primitives.kdf', 'cryptography.hazmat.primitives.kdf.scrypt', 'cryptography.hazmat.primitives.serialization.pkcs7', 'cryptography.hazmat.backends.openssl.backend', 'cryptography.hazmat.backends.openssl', 'cryptography.hazmat.primitives.ciphers.aead', 'cryptography.hazmat.primitives.keywrap', '_padding.lib', '_padding', 'cryptography.hazmat.bindings._padding', 'cryptography.hazmat.primitives.padding', 'jose.constants', 'jose.utils', 'jose.backends.base', 'jose.backends.cryptography_backend', 'jose.backends', 'jose.jwk', 'jose.jws', 'jose.jwt', 'botocore', 'botocore.vendored', 'botocore.vendored.six', 'botocore.vendored.requests.packages.urllib3.exceptions', 'botocore.vendored.requests.packages.urllib3', 'botocore.vendored.requests.packages', 'botocore.vendored.requests.exceptions', 'botocore.vendored.requests', 'botocore.exceptions', 'dateutil._version', 'dateutil', 'dateutil.tz._common', 'dateutil.tz._factories', 'dateutil.tz.tz', 'dateutil.tz', 'botocore.vendored.six.moves', 'xml.etree.cElementTree', 'botocore.compat', 'botocore.configloader', 'termios', 'getpass', 'dateutil._common', 'dateutil.relativedelta', 'dateutil.parser._parser', 'dateutil.parser.isoparser', 'dateutil.parser', 'OpenSSL._util', 'OpenSSL.crypto', 'OpenSSL.SSL', 'OpenSSL.version', 'OpenSSL', 'urllib3.packages.backports', 'urllib3.packages.backports.makefile', 'urllib3.contrib.pyopenssl', 'botocore.vendored.six.moves.urllib_parse', 'botocore.httpsession', 'botocore.vendored.six.moves.urllib', 'botocore.vendored.six.moves.urllib.request', 'botocore.utils', 'botocore.awsrequest', 'botocore.hooks', 'botocore.history', 'botocore.eventstream', 'botocore.parsers', 'botocore.response', 'botocore.endpoint', 'botocore.config', 'botocore.credentials', 'jmespath.compat', 'jmespath.exceptions', 'jmespath.lexer', 'jmespath.ast', 'jmespath.functions', 'jmespath.visitor', 'jmespath.parser', 'jmespath', 'botocore.docs.utils', 'botocore.docs.shape', 'botocore.docs.params', 'botocore.docs.example', 'botocore.docs.method', 'botocore.docs.sharedexample', 'botocore.docs.client', 'botocore.docs.waiter', 'botocore.docs.paginator', 'botocore.docs.bcdoc', '_markupbase', 'html.parser', 'botocore.docs.bcdoc.docstringparser', 'botocore.docs.bcdoc.style', 'botocore.docs.bcdoc.restdoc', 'botocore.docs.service', 'botocore.docs', 'botocore.docs.docstring', 'botocore.waiter', 'botocore.validate', 'botocore.serialize', 'botocore.auth', 'botocore.signers', 'botocore.args', 'botocore.model', 'botocore.paginate', 'botocore.discovery', 'botocore.retries', 'botocore.retries.quota', 'botocore.retries.base', 'botocore.retries.special', 'botocore.retries.standard', 'botocore.retries.bucket', 'botocore.retries.throttling', 'botocore.retries.adaptive', 'botocore.client', 'botocore.configprovider', 'botocore.errorfactory', 'botocore.retryhandler', 'botocore.translate', 'botocore.handlers', 'botocore.loaders', 'botocore.regions', 'botocore.monitoring', 'botocore.session', 'boto3.utils', 'boto3.exceptions', 'boto3.resources', 'boto3.resources.params', 'boto3.resources.response', 'boto3.resources.model', 'boto3.docs.client', 'boto3.docs.base', 'boto3.docs.method', 'boto3.docs.utils', 'boto3.docs.action', 'boto3.docs.waiter', 'boto3.docs.collection', 'boto3.docs.subresource', 'boto3.docs.attr', 'boto3.docs.resource', 'boto3.docs.service', 'boto3.docs', 'boto3.docs.docstring', 'boto3.resources.action', 'boto3.resources.base', 'boto3.resources.collection', 'boto3.resources.factory', 'boto3.session', 'boto3.compat', 'boto3', 'envs.exceptions', 'envs', 'pycognito.exceptions', 'pycognito.aws_srp', 'pycognito', 'hass_nabucasa.const', 'hass_nabucasa.auth', 'hass_nabucasa.client', 'hass_nabucasa.cloud_api', 'hass_nabucasa.cloudhooks', 'hass_nabucasa.utils', 'hass_nabucasa.iot_base', 'hass_nabucasa.google_report_state', 'hass_nabucasa.iot', 'snitun', 'snitun.exceptions', 'snitun.utils', 'snitun.utils.aes', 'snitun.client', 'snitun.multiplexer', 'snitun.utils.ipaddress', 'snitun.multiplexer.message', 'snitun.multiplexer.channel', 'snitun.multiplexer.crypto', 'snitun.multiplexer.core', 'snitun.client.connector', 'snitun.client.client_peer', 'snitun.utils.aiohttp_client', 'josepy.b64', 'josepy.errors', 'josepy.util', 'josepy.interfaces', 'josepy.json_util', 'josepy.jwk', 'josepy.jwa', 'josepy.jws', 'josepy', 'acme.jose.b64', 'acme.jose.errors', 'acme.jose.util', 'acme.jose.interfaces', 'acme.jose.json_util', 'acme.jose.jwk', 'acme.jose.jwa', 'acme.jose.jws', 'acme.jose', 'acme', 'acme.errors', 'acme.crypto_util', 'pyrfc3339.utils', 'pyrfc3339.generator', 'pyrfc3339.parser', 'pyrfc3339', 'acme.fields', 'acme.mixins', 'acme.challenges', 'urllib3.contrib.appengine', 'requests.packages.urllib3.packages.backports', 'requests.packages.urllib3.packages.backports.makefile', 'requests.packages.urllib3.contrib.pyopenssl', 'requests_toolbelt._compat', 'requests_toolbelt.adapters.ssl', 'requests_toolbelt.adapters.source', 'requests_toolbelt.adapters', 'requests_toolbelt.auth', 'requests_toolbelt.auth._digest_auth_compat', 'requests_toolbelt.auth.http_proxy_digest', 'requests_toolbelt.auth.guess', 'requests_toolbelt.multipart.encoder', 'requests_toolbelt.multipart.decoder', 'requests_toolbelt.multipart', 'requests_toolbelt.streaming_iterator', 'requests_toolbelt.utils', 'requests_toolbelt.utils.user_agent', 'requests_toolbelt', 'acme.jws', 'acme.util', 'acme.messages', 'acme.client', 'hass_nabucasa.acme', 'hass_nabucasa.remote', 'hass_nabucasa.voice', 'hass_nabucasa', 'homeassistant.helpers.temperature', 'homeassistant.components.climate.const', 'homeassistant.components.climate', 'homeassistant.components.alexa.const', 'homeassistant.components.alexa.flash_briefings', 'homeassistant.components.alexa.intent', 'homeassistant.components.alexa.auth', 'homeassistant.helpers.significant_change', 'homeassistant.components.alarm_control_panel.const', 'homeassistant.components.alarm_control_panel', 'homeassistant.components.notify', 'homeassistant.components.alert', 'homeassistant.components.binary_sensor', 'homeassistant.components.media_player.const', 'homeassistant.components.media_player.errors', 'homeassistant.components.media_player', 'homeassistant.components.stream.const', 'homeassistant.components.stream.core', 'homeassistant.components.stream.fmp4utils', 'homeassistant.components.stream.hls', 'tests.helpers.test_ratelimit', 'homeassistant.helpers.recorder', 'tests.helpers.test_recorder', 'homeassistant.helpers.reload', 'tests.helpers.test_reload', 'tests.helpers.test_restore_state', 'tests.helpers.test_script', 'tests.helpers.test_script_variables', 'tests.helpers.test_selector', 'tests.helpers.test_service', 'tests.helpers.test_significant_change', 'tests.helpers.test_singleton', 'homeassistant.helpers.start', 'tests.helpers.test_start', 'homeassistant.helpers.state', 'tests.helpers.test_state', 'tests.helpers.test_storage', 'tests.helpers.test_storage_remove', 'tests.helpers.test_sun', 'tests.helpers.test_system_info', 'tests.helpers.test_temperature', 'homeassistant.components.group', 'tests.helpers.test_template', 'homeassistant.generated.config_flows', 'homeassistant.helpers.translation', 'tests.helpers.test_translation', 'tests.helpers.test_trigger', 'tests.helpers.test_update_coordinator', 'tests.scripts', 'homeassistant.scripts', 'homeassistant.scripts.auth', 'tests.scripts.test_auth', 'homeassistant.scripts.check_config', 'tests.scripts.test_check_config', 'tests.scripts.test_init', 'tests.test_util.test_aiohttp', 'tests.util', 'homeassistant.util.aiohttp', 'tests.util.test_aiohttp', 'tests.util.test_async', 'tests.util.test_color', 'tests.util.test_distance', 'tests.util.test_dt', 'tests.util.test_executor', 'tests.util.test_init', 'tests.util.test_json', 'tests.util.test_location', 'tests.util.test_logging', 'tests.util.test_network', 'tests.util.test_package', 'homeassistant.util.percentage', 'tests.util.test_percentage', 'tests.util.test_pressure', 'homeassistant.util.process', 'tests.util.test_process', 'ruamel', 'ruamel.yaml.compat', 'ruamel.yaml.error', 'ruamel.yaml.util', 'ruamel.yaml.reader', 'ruamel.yaml.tokens', 'ruamel.yaml.scanner', 'ruamel.yaml.events', 'ruamel.yaml.anchor', 'ruamel.yaml.scalarstring', 'ruamel.yaml.comments', 'ruamel.yaml.parser', 'ruamel.yaml.nodes', 'ruamel.yaml.composer', 'ruamel.yaml.scalarint', 'ruamel.yaml.scalarfloat', 'ruamel.yaml.scalarbool', 'ruamel.yaml.timestamp', 'ruamel.yaml.constructor', 'ruamel.yaml.emitter', 'ruamel.yaml.serializer', 'ruamel.yaml.representer', '_ruamel_yaml', 'ruamel.yaml.resolver', 'ruamel.yaml.cyaml', 'ruamel.yaml.loader', 'ruamel.yaml.dumper', 'ruamel.yaml.main', 'ruamel.yaml', 'homeassistant.util.ruamel_yaml', 'tests.util.test_ruamel_yaml', 'tests.util.test_temperature', 'tests.util.test_thread', 'tests.util.test_timeout', 'tests.util.test_unit_system', 'tests.util.test_uuid', 'tests.util.test_volume', 'tests.util.yaml', 'tests.util.yaml.test_init', 'tests.util.yaml.test_input', 'tests.components.default_config', 'tests.components.blueprint', 'tests.components.blueprint.conftest', 'tests.components.default_config.test_init', 'tests.components.hue.test_bridge', 'aiohue.discovery', 'async_upnp_client.utils', 'async_upnp_client.ssdp', 'async_upnp_client.advertisement', 'xml.sax.handler', 'xml.sax._exceptions', 'xml.sax.xmlreader', 'xml.sax', 'xml.sax.saxutils', 'defusedxml.common', 'defusedxml', '_elementtree', 'xml.etree.ElementTree', 'defusedxml.ElementTree', 'async_upnp_client.const', 'async_upnp_client.exceptions', 'async_upnp_client.client', 'async_upnp_client.client_factory', 'async_upnp_client.event_handler', 'async_upnp_client', 'async_upnp_client.search', 'homeassistant.components.network.const', 'homeassistant.components.network.models', 'ifaddr._shared', 'ctypes.util', 'ifaddr._posix', 'ifaddr', 'homeassistant.components.network.util', 'homeassistant.components.network.network', 'homeassistant.components.network', 'homeassistant.components.ssdp.util', 'homeassistant.components.ssdp.descriptions', 'homeassistant.components.ssdp.flow', 'homeassistant.components.ssdp', 'homeassistant.components.hue.config_flow', 'tests.components.hue.test_config_flow', 'homeassistant.components.homeassistant', 'homeassistant.components.homeassistant.triggers', 'homeassistant.components.homeassistant.triggers.event', 'homeassistant.components.hue.device_trigger', 'tests.components.hue.test_sensor_base', 'tests.components.hue.test_device_trigger', 'tests.components.hue.test_init', 'tests.components.hue.test_init_multiple_bridges', 'tests.components.hue.test_light', 'tests.components.recorder.test_history', 'tests.components.recorder.test_init', 'tests.components.recorder.models_original', 'tests.components.recorder.test_migrate', 'tests.components.recorder.test_models', 'tests.components.recorder.test_pool', 'tests.components.recorder.test_purge', 'tests.components.recorder.test_statistics', 'tests.components.recorder.test_util', 'zeroconf._exceptions', 'zeroconf._utils', 'zeroconf._logger', 'zeroconf.const', 'zeroconf._utils.net', 'zeroconf._utils.time', 'zeroconf._dns', 'zeroconf._cache', 'zeroconf._history', 'zeroconf._utils.struct', 'zeroconf._protocol', 'zeroconf._services', 'zeroconf._updates', 'zeroconf._utils.asyncio', 'zeroconf._utils.name', 'zeroconf._services.info', 'zeroconf._services.registry', 'zeroconf._handlers', 'zeroconf._services.browser', 'zeroconf._core', 'zeroconf._services.types', 'zeroconf', 'zeroconf.asyncio', 'homeassistant.components.zeroconf.models', 'homeassistant.components.zeroconf.usage', 'homeassistant.components.zeroconf', 'tests.components.zeroconf.test_init', 'tests.components.zeroconf.test_usage', 'custom_components', 'custom_components.test_package.const', 'custom_components.test_package', 'custom_components.test', 'custom_components.test.light', 'custom_components.test_embedded', 'custom_components.test_embedded.switch', 'homeassistant.components.switch', 'aiohttp_cors.__about__', 'aiohttp_cors.resource_options', 'aiohttp_cors.abc', 'aiohttp_cors.preflight_handler', 'aiohttp_cors.mixin', 'aiohttp_cors.urldispatcher_router_adapter', 'aiohttp_cors.cors_config', 'aiohttp_cors', 'astral.moon', 'astral.location', 'homeassistant.components.input_datetime', 'homeassistant.components.input_text', 'homeassistant.components.input_select', 'jinja2.debug', 'homeassistant.components.input_number', 'homeassistant.components.homeassistant.trigger', 'homeassistant.components.updater', 'homeassistant.components.counter', 'homeassistant.components.dhcp', 'dns.version', 'dns', 'dns.exception', 'dns._immutable_ctx', 'dns.immutable', 'dns.name', 'dns.wire', 'dns.enum', 'dns.ipv4', 'dns.ipv6', 'dns.inet', 'dns.rdataclass', 'dns.rdatatype', 'dns.ttl', 'dns.tokenizer', 'dns.rdata', 'dns.edns', 'dns.flags', 'dns.opcode', 'dns.entropy', 'dns.rcode', 'dns.set', 'dns.rdataset', 'dns.tsig', 'dns.renderer', 'dns.rrset', 'dns.rdtypes', 'dns.rdtypes.ANY', 'dns.rdtypes.ANY.OPT', 'dns.rdtypes.ANY.TSIG', 'dns.message', 'pr2modules', 'multiprocessing.process', 'multiprocessing.reduction', 'multiprocessing.context', '__mp_main__', 'multiprocessing', 'pr2modules.config', 'pr2modules.config.version', 'pr2modules.config.log', 'pr2modules.common', 'pr2modules.netlink.exceptions', 'pr2modules.netlink', 'pr2modules.netlink.nlsocket', 'pr2modules.netlink.generic', 'pr2modules.netlink.event', 'pr2modules.netlink.event.acpi_event', 'pr2modules.netlink.event.dquot', 'pr2modules.netlink.devlink', 'pr2modules.netlink.diag', 'pr2modules.netlink.rtnl', 'pr2modules.netlink.rtnl.iw_event', 'pr2modules.netlink.rtnl.ifinfmsg.plugins', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.bond', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.geneve', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.gtp', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.ipvlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.team', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.tuntap', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.tun', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vrf', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vti', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vti6', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vxlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.xfrm', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.ipoib', 'pr2modules.netlink.rtnl.ifinfmsg', 'pr2modules.netlink.rtnl.rtmsg', 'pr2modules.netlink.rtnl.fibmsg', 'pr2modules.netlink.rtnl.req', 'pr2modules.netlink.ipq', 'pr2modules.proxy', 'pr2modules.protocols', 'pr2modules.netlink.rtnl.tcmsg.common', 'pr2modules.netlink.rtnl.tcmsg.act_police', 'pr2modules.netlink.rtnl.tcmsg.act_gact', 'pr2modules.netlink.rtnl.tcmsg.act_bpf', 'pr2modules.netlink.rtnl.tcmsg.act_mirred', 'pr2modules.netlink.rtnl.tcmsg.act_connmark', 'pr2modules.netlink.rtnl.tcmsg.act_vlan', 'pr2modules.netlink.rtnl.tcmsg.act_skbedit', 'pr2modules.netlink.rtnl.tcmsg.common_act', 'pr2modules.netlink.rtnl.tcmsg.cls_fw', 'pr2modules.netlink.rtnl.tcmsg.cls_u32', 'pr2modules.netlink.rtnl.tcmsg.cls_matchall', 'pr2modules.netlink.rtnl.tcmsg.em_cmp', 'pr2modules.netlink.rtnl.tcmsg.em_ipset', 'pr2modules.netlink.rtnl.tcmsg.em_meta', 'pr2modules.netlink.rtnl.tcmsg.common_ematch', 'pr2modules.netlink.rtnl.tcmsg.cls_basic', 'pr2modules.netlink.rtnl.tcmsg.cls_flow', 'pr2modules.netlink.rtnl.tcmsg.sched_bpf', 'pr2modules.netlink.rtnl.tcmsg.sched_cake', 'pr2modules.netlink.rtnl.tcmsg.sched_choke', 'pr2modules.netlink.rtnl.tcmsg.sched_clsact', 'pr2modules.netlink.rtnl.tcmsg.sched_codel', 'pr2modules.netlink.rtnl.tcmsg.sched_drr', 'pr2modules.netlink.rtnl.tcmsg.sched_fq_codel', 'pr2modules.netlink.rtnl.tcmsg.sched_hfsc', 'pr2modules.netlink.rtnl.tcmsg.sched_htb', 'pr2modules.netlink.rtnl.tcmsg.sched_ingress', 'pr2modules.netlink.rtnl.tcmsg.sched_netem', 'pr2modules.netlink.rtnl.tcmsg.sched_pfifo', 'pr2modules.netlink.rtnl.tcmsg.sched_pfifo_fast', 'pr2modules.netlink.rtnl.tcmsg.sched_plug', 'pr2modules.netlink.rtnl.tcmsg.sched_sfq', 'pr2modules.netlink.rtnl.tcmsg.sched_tbf', 'pr2modules.netlink.rtnl.tcmsg.sched_template', 'pr2modules.netlink.rtnl.tcmsg', 'pr2modules.netlink.rtnl.ndmsg', 'pr2modules.netlink.rtnl.ndtmsg', 'pr2modules.netlink.rtnl.rtgenmsg', 'pr2modules.netlink.rtnl.nsidmsg', 'pr2modules.netlink.rtnl.ifaddrmsg', 'pr2modules.netlink.rtnl.ifstatsmsg', 'pr2modules.netlink.rtnl.marshal', 'pr2modules.netlink.rtnl.riprsocket', 'pr2modules.netlink.rtnl.ifinfmsg.sync', 'pr2modules.netlink.rtnl.ifinfmsg.tuntap', 'pr2modules.netlink.rtnl.ifinfmsg.proxy', 'pr2modules.netlink.rtnl.iprsocket', 'pr2modules.netlink.rtnl.nsinfmsg', 'pr2modules.iproute.linux', 'pr2modules.iproute', 'pr2modules.netlink.generic.l2tp', 'pr2modules.netlink.generic.mptcp', 'pr2modules.netlink.nfnetlink', 'pr2modules.netlink.nfnetlink.nfctsocket', 'pr2modules.netlink.nfnetlink.nftsocket', 'pr2modules.netlink.nl80211', 'pr2modules.netlink.taskstats', 'pr2modules.netlink.uevent', 'pr2modules.netlink.generic.wireguard', 'pr2modules.bsd', 'pr2modules.iwutil', 'pr2modules.netns', 'pr2modules.netlink.generic.ethtool', 'pr2modules.ethtool.common', 'pr2modules.ethtool.ioctl', 'pr2modules.ethtool.ethtool', 'pr2modules.ethtool', 'pr2modules.ipdb', 'pr2modules.ipdb.exceptions', 'pr2modules.ipdb.linkedset', 'pr2modules.ipdb.transactional', 'pr2modules.ipdb.rules', 'pr2modules.ipdb.routes', 'pr2modules.ipdb.interfaces', 'pr2modules.ipdb.utils', 'pr2modules.ipdb.main', 'pr2modules.netlink.nfnetlink.ipset', 'pr2modules.ipset', 'pr2modules.wiset', 'pr2modules.cli', 'pr2modules.ndb', 'pr2modules.ndb.report', 'pr2modules.ndb.auth_manager', 'pr2modules.ndb.events', 'pr2modules.ndb.objects', 'pr2modules.ndb.objects.address', 'pr2modules.netlink.rtnl.p2pmsg', 'pr2modules.ndb.objects.interface', 'pr2modules.ndb.objects.neighbour', 'pr2modules.ndb.objects.netns', 'pr2modules.ndb.objects.route', 'pr2modules.ndb.objects.rule', 'pr2modules.ndb.messages', 'pr2modules.ndb.schema', 'mitogen', 'pstats', 'imp', '_lsprof', 'profile', 'cProfile', 'mitogen.core', 'mitogen.minify', 'mitogen.parent', '_sysconfigdata__linux_x86_64-linux-gnu', 'mitogen.master', 'pr2modules.remote.transport', 'pr2modules.remote.iproute', 'pr2modules.remote', 'pr2modules.inotify', 'pr2modules.inotify.inotify_msg', 'pr2modules.inotify.inotify_fd', 'pr2modules.netns.manager', 'pr2modules.nslink', 'pr2modules.nslink.nslink', 'pr2modules.ndb.source', 'pr2modules.ndb.main', 'pr2modules.cli.parser', 'pr2modules.cli.session', 'readline', 'pr2modules.cli.console', 'pr2modules.ndb.noipdb', 'pr2modules.cli.server', 'pr2modules.nftables', 'pr2modules.nftables.main', 'pr2modules.nslink.nspopen', 'pyroute2', 'aiodiscover.network', 'aiodiscover.discovery', 'aiodiscover', 'scapy', 'scapy.arch', 'gzip', 'scapy.modules', 'scapy.modules.six', 'scapy.compat', 'scapy.consts', 'scapy.error', 'scapy.modules.six.moves', 'scapy.base_classes', 'scapy.themes', 'scapy.config', 'scapy.dadict', 'scapy.libs', 'scapy.libs.ethertypes', 'scapy.data', 'scapy.pton_ntop', 'scapy.utils', 'scapy.volatile', 'scapy.utils6', 'scapy.interfaces', 'scapy.arch.linux', 'scapy.libs.structures', 'scapy.arch.common', 'scapy.packet', 'scapy.fields', 'scapy.extlib', 'matplotlib', 'matplotlib._api.deprecation', 'matplotlib._api', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core._multiarray_umath', 'numpy.compat._inspect', 'numpy.compat.py3k', 'numpy.compat', 'numpy.core.overrides', 'numpy.core.multiarray', 'numpy.core.umath', 'numpy.core._string_helpers', 'numpy.core._dtype', 'numpy.core._type_aliases', 'numpy.core.numerictypes', 'numpy.core._asarray', 'numpy.core._exceptions', 'numpy.core._methods', 'numpy.core.fromnumeric', 'numpy.core.shape_base', 'numpy.core._ufunc_config', 'numpy.core.arrayprint', 'numpy.core.numeric', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.einsumfunc', 'numpy.core._multiarray_tests', 'numpy.core._add_newdocs', 'numpy.core._add_newdocs_scalars', 'numpy.core._dtype_ctypes', 'numpy.core._internal', 'numpy._pytesttester', 'numpy.core', 'numpy.lib.mixins', 'numpy.lib.ufunclike', 'numpy.lib.type_check', 'numpy.lib.scimath', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.linalg.linalg', 'numpy.linalg', 'numpy.matrixlib.defmatrix', 'numpy.matrixlib', 'numpy.lib.histograms', 'numpy.lib.function_base', 'numpy.lib.stride_tricks', 'numpy.lib.index_tricks', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.format', 'numpy.lib._datasource', 'numpy.lib._iotools', 'numpy.lib.npyio', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.lib', 'numpy.fft._pocketfft_internal', 'numpy.fft._pocketfft', 'numpy.fft.helper', 'numpy.fft', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.polynomial', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.polynomial', '_cython_0_29_22', 'numpy.random._common', 'numpy.random.bit_generator', 'numpy.random._bounded_integers', 'numpy.random._mt19937', 'numpy.random.mtrand', 'numpy.random._philox', 'numpy.random._pcg64', 'numpy.random._sfc64', 'numpy.random._generator', 'numpy.random._pickle', 'numpy.random', 'numpy.ctypeslib', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.ma', 'numpy', 'matplotlib._c_internal_utils', 'matplotlib.cbook', 'matplotlib.docstring', 'PIL._version', 'PIL', 'PIL.ImageMode', 'PIL.TiffTags', 'PIL._binary', 'PIL._util', 'PIL._imaging', 'cffi.lock', 'cffi.error', 'cffi.model', 'cffi.api', 'cffi', 'PIL.Image', 'matplotlib._animation_data', 'matplotlib.animation', 'PIL.ImageChops', 'PIL.ImageFile', 'PIL.GimpGradientFile', 'PIL.GimpPaletteFile', 'PIL.ImageColor', 'PIL.PaletteFile', 'PIL.ImagePalette', 'PIL.ImageSequence', 'PIL.PngImagePlugin', 'matplotlib._path', 'matplotlib.bezier', 'matplotlib.path', 'matplotlib.transforms', 'matplotlib.ticker', 'matplotlib.scale', 'matplotlib._color_data', 'matplotlib.colors', 'pyparsing', 'matplotlib.fontconfig_pattern', 'matplotlib._enums', 'cycler', 'matplotlib.rcsetup', 'matplotlib._version', 'matplotlib.ft2font', 'kiwisolver', 'dateutil.rrule', 'matplotlib.units', 'matplotlib.dates']
DEBUG matplotlib:__init__.py:224 CACHEDIR=/build/.cache/matplotlib
DEBUG matplotlib.font_manager:font_manager.py:1049 font search path [PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf'), PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/afm'), PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts')]
INFO matplotlib.font_manager:font_manager.py:1443 generated new fontManager
DEBUG matplotlib.pyplot:pyplot.py:290 Loaded backend agg version unknown.
DEBUG matplotlib.pyplot:pyplot.py:290 Loaded backend agg version unknown.
INFO homeassistant.setup:setup.py:218 Setting up dhcp
INFO homeassistant.setup:setup.py:266 Setup of domain dhcp took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'http', 'lovelace', 'onboarding', 'search', 'system_log', 'websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency history will wait for dependencies ['http', 'recorder']
INFO homeassistant.setup:setup.py:218 Setting up input_boolean
INFO homeassistant.setup:setup.py:218 Setting up input_datetime
INFO homeassistant.setup:setup.py:218 Setting up input_number
INFO homeassistant.setup:setup.py:218 Setting up input_select
INFO homeassistant.setup:setup.py:218 Setting up input_text
DEBUG homeassistant.setup:setup.py:131 Dependency logbook will wait for dependencies ['frontend', 'http', 'recorder']
DEBUG homeassistant.setup:setup.py:131 Dependency map will wait for dependencies ['frontend']
DEBUG homeassistant.setup:setup.py:131 Dependency media_source will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency mobile_app will wait for dependencies ['http', 'webhook', 'person', 'tag', 'websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency my will wait for dependencies ['frontend']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency person will wait for dependencies ['image']
INFO homeassistant.setup:setup.py:218 Setting up scene
DEBUG homeassistant.setup:setup.py:131 Dependency script will wait for dependencies ['blueprint', 'trace']
DEBUG homeassistant.setup:setup.py:131 Dependency ssdp will wait for dependencies ['network']
INFO homeassistant.setup:setup.py:218 Setting up sun
DEBUG homeassistant.components.sun:__init__.py:209 sun phase_update@2021-07-13T00:36:44.255633+00:00: phase=day
DEBUG homeassistant.components.sun:__init__.py:232 sun position_update@2021-07-13T00:36:44.256285+00:00: elevation=27.53 azimuth=279.35
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=sun.sun, old_state=None, new_state=<state sun.sun=above_horizon; next_dawn=2021-07-13T12:22:09.432484+00:00, next_dusk=2021-07-13T03:27:26.222824+00:00, next_midnight=2021-07-13T07:54:45+00:00, next_noon=2021-07-13T19:54:39+00:00, next_rising=2021-07-13T12:50:46.993913+00:00, next_setting=2021-07-13T02:58:48.813963+00:00, elevation=27.53, azimuth=279.35, rising=False, friendly_name=Sun @ 2021-07-13T00:36:44.256466+00:00>>
DEBUG homeassistant.components.sun:__init__.py:218 next time: 2021-07-13T02:03:21.157605+00:00
INFO homeassistant.setup:setup.py:266 Setup of domain sun took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency system_health will wait for dependencies ['http']
INFO homeassistant.loader:loader.py:349 Loaded homeassistant from homeassistant.components.homeassistant
INFO homeassistant.setup:setup.py:218 Setting up tag
INFO homeassistant.setup:setup.py:218 Setting up timer
INFO homeassistant.setup:setup.py:218 Setting up updater
INFO homeassistant.setup:setup.py:266 Setup of domain updater took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency webhook will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
INFO homeassistant.setup:setup.py:218 Setting up zone
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=dhcp>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=sun>
ERROR homeassistant.components.updater:update_coordinator.py:246 Unexpected error fetching Home Assistant update data: not enough values to unpack (expected 2, got 0)
Traceback (most recent call last):
File "/build/source/homeassistant/helpers/update_coordinator.py", line 187, in _async_refresh
self.data = await self._async_update_data()
File "/build/source/homeassistant/helpers/update_coordinator.py", line 147, in _async_update_data
return await self.update_method()
File "/build/source/homeassistant/components/updater/__init__.py", line 75, in check_new_version
newest, release_notes = await get_newest_version(hass)
ValueError: not enough values to unpack (expected 2, got 0)
DEBUG homeassistant.components.updater:update_coordinator.py:256 Finished fetching Home Assistant update data in 0.002 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=updater>
INFO homeassistant.setup:setup.py:218 Setting up blueprint
INFO homeassistant.setup:setup.py:266 Setup of domain blueprint took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up trace
INFO homeassistant.setup:setup.py:266 Setup of domain trace took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up http
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency auth will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency config will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up device_automation
INFO homeassistant.setup:setup.py:266 Setup of domain device_automation took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up lovelace
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.setup:setup.py:131 Dependency onboarding will wait for dependencies ['analytics', 'auth', 'http', 'person']
DEBUG homeassistant.setup:setup.py:131 Dependency search will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency system_log will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up recorder
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=recorder, service=purge>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=recorder, service=purge_entities>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=recorder, service=enable>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=recorder, service=disable>
DEBUG homeassistant.setup:setup.py:131 Dependency image will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:266 Setup of domain tag took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=blueprint>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=trace>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=device_automation>
INFO homeassistant.loader:loader.py:349 Loaded binary_sensor from homeassistant.components.binary_sensor
INFO homeassistant.setup:setup.py:218 Setting up homeassistant
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO homeassistant.setup:setup.py:266 Setup of domain homeassistant took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=tag>
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.1 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain lovelace took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency analytics will wait for dependencies ['api', 'websocket_api']
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=counter, service=increment>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=counter, service=decrement>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=counter, service=reset>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=counter, service=configure>
INFO homeassistant.setup:setup.py:266 Setup of domain counter took 1.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=lovelace>
INFO homeassistant.setup:setup.py:218 Setting up binary_sensor
INFO homeassistant.setup:setup.py:266 Setup of domain binary_sensor took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_boolean, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_boolean, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_boolean, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_boolean, service=toggle>
INFO homeassistant.setup:setup.py:266 Setup of domain input_boolean took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_datetime, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_datetime, service=set_datetime>
INFO homeassistant.setup:setup.py:266 Setup of domain input_datetime took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_number, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_number, service=set_value>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_number, service=increment>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_number, service=decrement>
INFO homeassistant.setup:setup.py:266 Setup of domain input_number took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_option>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_next>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_previous>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_first>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_last>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=set_options>
INFO homeassistant.setup:setup.py:266 Setup of domain input_select took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_text, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_text, service=set_value>
INFO homeassistant.setup:setup.py:266 Setup of domain input_text took 0.1 seconds
INFO homeassistant.components.scene:entity_platform.py:236 Setting up scene.homeassistant
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=start>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=pause>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=cancel>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=finish>
INFO homeassistant.setup:setup.py:266 Setup of domain timer took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=zone, service=reload>
INFO homeassistant.setup:setup.py:218 Setting up automation
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=trigger>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=toggle>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=reload>
INFO homeassistant.setup:setup.py:266 Setup of domain automation took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up script
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=script, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=script, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=script, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=script, service=toggle>
INFO homeassistant.setup:setup.py:266 Setup of domain script took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=counter>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=binary_sensor>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_boolean>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_datetime>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_number>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_select>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_text>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=scene, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=scene, service=apply>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=scene, service=create>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=timer>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=zone.home, old_state=None, new_state=<state zone.home=zoning; latitude=32.87336, longitude=-117.22743, radius=100, passive=False, editable=True, friendly_name=test home, icon=mdi:home @ 2021-07-13T00:36:44.401101+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=script>
INFO sqlalchemy.engine.Engine:base.py:136 BEGIN (implicit)
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("events")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("events")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("states")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("states")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("statistics")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("statistics")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("statistics_meta")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("statistics_meta")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("recorder_runs")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("recorder_runs")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO homeassistant.setup:setup.py:218 Setting up media_source
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("schema_changes")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("schema_changes")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO homeassistant.setup:setup.py:218 Setting up system_health
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE events (
event_id INTEGER NOT NULL,
event_type VARCHAR(64),
event_data TEXT,
origin VARCHAR(32),
time_fired DATETIME,
created DATETIME,
context_id VARCHAR(36),
context_user_id VARCHAR(36),
context_parent_id VARCHAR(36),
PRIMARY KEY (event_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00020s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_event_type_time_fired ON events (event_type, time_fired)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00016s] ()
INFO homeassistant.setup:setup.py:218 Setting up webhook
INFO homeassistant.setup:setup.py:266 Setup of domain webhook took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_context_parent_id ON events (context_parent_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00014s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_time_fired ON events (time_fired)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00011s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_context_id ON events (context_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00012s] ()
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_context_user_id ON events (context_user_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00015s] ()
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE statistics (
id INTEGER NOT NULL,
created DATETIME,
source VARCHAR(32),
statistic_id VARCHAR(255),
start DATETIME,
mean FLOAT,
min FLOAT,
max FLOAT,
last_reset DATETIME,
state FLOAT,
sum FLOAT,
PRIMARY KEY (id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00013s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_statistics_start ON statistics (start)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00013s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_statistics_statistic_id_start ON statistics (statistic_id, start)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00012s] ()
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE statistics_meta (
statistic_id VARCHAR(255) NOT NULL,
source VARCHAR(32),
unit_of_measurement VARCHAR(255),
PRIMARY KEY (statistic_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00014s] ()
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE recorder_runs (
run_id INTEGER NOT NULL,
start DATETIME,
"end" DATETIME,
closed_incorrect BOOLEAN,
created DATETIME,
PRIMARY KEY (run_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00017s] ()
INFO homeassistant.setup:setup.py:218 Setting up auth
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_recorder_runs_start_end ON recorder_runs (start, "end")
INFO homeassistant.setup:setup.py:266 Setup of domain auth took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00094s] ()
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE schema_changes (
change_id INTEGER NOT NULL,
schema_version INTEGER,
changed DATETIME,
PRIMARY KEY (change_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00011s] ()
INFO homeassistant.setup:setup.py:218 Setting up config
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE states (
state_id INTEGER NOT NULL,
domain VARCHAR(64),
entity_id VARCHAR(255),
state VARCHAR(255),
attributes TEXT,
event_id INTEGER,
last_changed DATETIME,
last_updated DATETIME,
created DATETIME,
old_state_id INTEGER,
PRIMARY KEY (state_id),
FOREIGN KEY(event_id) REFERENCES events (event_id) ON DELETE CASCADE,
FOREIGN KEY(old_state_id) REFERENCES states (state_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00014s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_states_last_updated ON states (last_updated)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00015s] ()
INFO homeassistant.setup:setup.py:218 Setting up system_log
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_states_event_id ON states (event_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00012s] ()
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO homeassistant.setup:setup.py:266 Setup of domain system_log took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_states_entity_id_last_updated ON states (entity_id, last_updated)
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00020s] ()
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_states_old_state_id ON states (old_state_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00010s] ()
INFO sqlalchemy.engine.Engine:base.py:136 COMMIT
DEBUG homeassistant.components.recorder:__init__.py:941 Connected to recorder database
INFO sqlalchemy.engine.Engine:base.py:136 BEGIN (implicit)
INFO sqlalchemy.engine.Engine:base.py:136 SELECT schema_changes.change_id AS schema_changes_change_id, schema_changes.schema_version AS schema_changes_schema_version, schema_changes.changed AS schema_changes_changed
FROM schema_changes ORDER BY schema_changes.change_id DESC
LIMIT ? OFFSET ?
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00022s] (1, 0)
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_list("events")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO homeassistant.setup:setup.py:218 Setting up image
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_context_user_id")
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=scene, service=turn_on>
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO homeassistant.setup:setup.py:266 Setup of domain scene took 0.2 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain zone took 0.2 seconds
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_context_id")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_time_fired")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_context_parent_id")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_event_type_time_fired")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
DEBUG homeassistant.components.recorder.migration:migration.py:43 No schema version found. Inspected version: 17
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO schema_changes (schema_version, changed) VALUES (?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00119s] (17, '2021-07-13 00:36:44.458554')
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=auth>
INFO sqlalchemy.engine.Engine:base.py:136 COMMIT
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.area_registry>
INFO sqlalchemy.engine.Engine:base.py:136 BEGIN (implicit)
INFO sqlalchemy.engine.Engine:base.py:136 SELECT recorder_runs.run_id AS recorder_runs_run_id, recorder_runs.start AS recorder_runs_start, recorder_runs."end" AS recorder_runs_end, recorder_runs.closed_incorrect AS recorder_runs_closed_incorrect, recorder_runs.created AS recorder_runs_created
FROM recorder_runs
WHERE recorder_runs."end" IS NULL
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00029s] ()
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO recorder_runs (start, "end", closed_incorrect, created) VALUES (?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00032s] ('2021-07-13 00:36:44.360145', None, 0, '2021-07-13 00:36:44.467812')
INFO sqlalchemy.engine.Engine:base.py:136 COMMIT
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG homeassistant.components.recorder:__init__.py:612 Recorder processing the queue
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=system_log>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.components.binary_sensor:entity_platform.py:236 Setting up binary_sensor.updater
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=scene>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=zone>
INFO homeassistant.setup:setup.py:266 Setup of domain image took 0.0 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain media_source took 0.1 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain system_health took 0.1 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain config took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=image>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=media_source>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=system_health>
ERROR homeassistant.setup:setup.py:173 Setup failed for cloud: Unable to import component: No module named 'av'
INFO homeassistant.setup:setup.py:266 Setup of domain recorder took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config>
INFO homeassistant.setup:setup.py:218 Setting up network
INFO homeassistant.setup:setup.py:218 Setting up search
INFO homeassistant.setup:setup.py:266 Setup of domain search took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up analytics
INFO homeassistant.helpers.entity_registry:entity_registry.py:309 Registered new binary_sensor.updater entity: binary_sensor.updater
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=binary_sensor.updater>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=binary_sensor.updater, old_state=None, new_state=<state binary_sensor.updater=unavailable; friendly_name=Updater @ 2021-07-13T00:36:44.513365+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=recorder>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=search>
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain analytics took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up person
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=analytics>
INFO homeassistant.setup:setup.py:218 Setting up history
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain history took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=history>
INFO homeassistant.setup:setup.py:218 Setting up ssdp
INFO homeassistant.setup:setup.py:266 Setup of domain ssdp took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=ssdp>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO homeassistant.setup:setup.py:266 Setup of domain person took 0.0 seconds
DEBUG async_upnp_client.ssdp:ssdp.py:208 Creating socket on (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('0.0.0.0', 0)) to (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('239.255.255.250', 1900))
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=person>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/components/ssdp/__init__.py", line 244, in async_start
await asyncio.gather(
File "/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/search.py", line 91, in async_start
sock, source, self._target = get_ssdp_socket(self.source_ip, self.target_ip)
File "/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/ssdp.py", line 228, in get_ssdp_socket
sock.setsockopt(
OSError: [Errno 19] No such device
ERROR homeassistant.setup:setup.py:173 Setup failed for mobile_app: Unable to import component: No module named 'av'
INFO homeassistant.setup:setup.py:218 Setting up onboarding
INFO homeassistant.setup:setup.py:266 Setup of domain onboarding took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO homeassistant.setup:setup.py:218 Setting up frontend
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO homeassistant.setup:setup.py:266 Setup of domain frontend took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=frontend>
INFO homeassistant.setup:setup.py:218 Setting up logbook
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=logbook, service=log>
INFO homeassistant.setup:setup.py:218 Setting up map
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain map took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up my
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain my took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=map>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=my>
INFO homeassistant.setup:setup.py:266 Setup of domain logbook took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=logbook>
INFO homeassistant.components.http:__init__.py:375 Now listening on port 8123
ERROR homeassistant.setup:setup.py:153 Unable to set up dependencies of default_config. Setup failed for dependencies: cloud, mobile_app, zeroconf
ERROR homeassistant.setup:setup.py:173 Setup failed for default_config: Could not set up all dependencies.
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Exception in callback EventBus.async_listen_once.<locals>._onetime_listener(<Event homeassistant_stop[L]>) at /build/source/homeassistant/core.py:819
Traceback (most recent call last):
File "/nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/lib/python3.8/asyncio/events.py", line 81, in _run
self._context.run(self._callback, *self._args)
File "/build/source/homeassistant/core.py", line 833, in _onetime_listener
self._hass.async_run_job(listener, event)
File "/build/source/homeassistant/core.py", line 451, in async_run_job
return self.async_run_hass_job(HassJob(target), *args)
File "/build/source/homeassistant/core.py", line 432, in async_run_hass_job
hassjob.target(*args)
File "/build/source/homeassistant/components/ssdp/__init__.py", line 194, in async_stop
assert self._cancel_scan is not None
AssertionError
INFO:sqlalchemy.engine.Engine:BEGIN (implicit)
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
INFO:sqlalchemy.engine.Engine:[generated in 0.00055s] ('service_registered', '{"domain": "recorder", "service": "purge"}', 'LOCAL', '2021-07-13 00:36:44.360354', '2021-07-13 00:36:44.360354', 'e0d3747b71d3e5278f348e35a9dbe916', None, None)
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.002728s ago] ('service_registered', '{"domain": "recorder", "service": "purge_entities"}', 'LOCAL', '2021-07-13 00:36:44.360474', '2021-07-13 00:36:44.360474', '27921c16c2bb43595eda70da5f2a2a04', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.003086s ago] ('service_registered', '{"domain": "recorder", "service": "enable"}', 'LOCAL', '2021-07-13 00:36:44.361476', '2021-07-13 00:36:44.361476', '63ebc0c2e3edc74829142e7bfa015977', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.003327s ago] ('service_registered', '{"domain": "recorder", "service": "disable"}', 'LOCAL', '2021-07-13 00:36:44.361593', '2021-07-13 00:36:44.361593', '97b18ae6c5328fd63fb9b6667fef99e1', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.003533s ago] ('component_loaded', '{"component": "blueprint"}', 'LOCAL', '2021-07-13 00:36:44.364024', '2021-07-13 00:36:44.364024', 'b059a3e146cafdfff2640361946c855c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.00373s ago] ('component_loaded', '{"component": "trace"}', 'LOCAL', '2021-07-13 00:36:44.364691', '2021-07-13 00:36:44.364691', 'cad96f12ffdd411d4a2a856ad99c7af3', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.003922s ago] ('component_loaded', '{"component": "device_automation"}', 'LOCAL', '2021-07-13 00:36:44.364926', '2021-07-13 00:36:44.364926', '6788fb05718cad0a2ccb1f4caf73da66', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.004149s ago] ('service_registered', '{"domain": "homeassistant", "service": "turn_off"}', 'LOCAL', '2021-07-13 00:36:44.366937', '2021-07-13 00:36:44.366937', '2583fa45a3a12fa9bc75cc2afd7bd6f8', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.004352s ago] ('service_registered', '{"domain": "homeassistant", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.367140', '2021-07-13 00:36:44.367140', 'c67648c6e88e82b2a32cc10e5a792f76', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.004543s ago] ('service_registered', '{"domain": "homeassistant", "service": "toggle"}', 'LOCAL', '2021-07-13 00:36:44.367307', '2021-07-13 00:36:44.367307', '57a760d849d0e54cce83458c2698e2a9', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.004733s ago] ('service_registered', '{"domain": "homeassistant", "service": "stop"}', 'LOCAL', '2021-07-13 00:36:44.367530', '2021-07-13 00:36:44.367530', 'a6f4df09f0f47bed43a056a130a1cb39', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.004924s ago] ('service_registered', '{"domain": "homeassistant", "service": "restart"}', 'LOCAL', '2021-07-13 00:36:44.367703', '2021-07-13 00:36:44.367703', 'edb38684e64b005dfccb11a009621f62', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.005144s ago] ('service_registered', '{"domain": "homeassistant", "service": "check_config"}', 'LOCAL', '2021-07-13 00:36:44.367862', '2021-07-13 00:36:44.367862', 'a38eeb89dca377429b617ef801ab799a', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.005348s ago] ('service_registered', '{"domain": "homeassistant", "service": "update_entity"}', 'LOCAL', '2021-07-13 00:36:44.368029', '2021-07-13 00:36:44.368029', '99a9efe06745740774cdcab3626901fe', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.005544s ago] ('service_registered', '{"domain": "homeassistant", "service": "reload_core_config"}', 'LOCAL', '2021-07-13 00:36:44.368188', '2021-07-13 00:36:44.368188', '4f33135f870e12138285e4660b82fff2', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.005735s ago] ('service_registered', '{"domain": "homeassistant", "service": "set_location"}', 'LOCAL', '2021-07-13 00:36:44.368416', '2021-07-13 00:36:44.368416', '3dcafa32c3db1d054ec9893d3aac22eb', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.005926s ago] ('service_registered', '{"domain": "homeassistant", "service": "reload_config_entry"}', 'LOCAL', '2021-07-13 00:36:44.368554', '2021-07-13 00:36:44.368554', '43bbe8b6a01d744e290422870a51819e', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.006146s ago] ('component_loaded', '{"component": "tag"}', 'LOCAL', '2021-07-13 00:36:44.368891', '2021-07-13 00:36:44.368891', '8c842d1e0ddc7f35c2c4a1cbb01a7fac', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.006349s ago] ('component_loaded', '{"component": "homeassistant"}', 'LOCAL', '2021-07-13 00:36:44.370493', '2021-07-13 00:36:44.370493', 'cbcc7c81da2d457819412e408ac48ffe', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.006541s ago] ('service_registered', '{"domain": "counter", "service": "increment"}', 'LOCAL', '2021-07-13 00:36:44.371271', '2021-07-13 00:36:44.371271', '57bfa019a058417feafdadeb07a353ec', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.006734s ago] ('service_registered', '{"domain": "counter", "service": "decrement"}', 'LOCAL', '2021-07-13 00:36:44.371503', '2021-07-13 00:36:44.371503', '278beb0099fda774c0bf2fbb3cb56204', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.006923s ago] ('service_registered', '{"domain": "counter", "service": "reset"}', 'LOCAL', '2021-07-13 00:36:44.371690', '2021-07-13 00:36:44.371690', 'b72d969a629aeaa1c77f47033936702c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.007139s ago] ('service_registered', '{"domain": "counter", "service": "configure"}', 'LOCAL', '2021-07-13 00:36:44.372034', '2021-07-13 00:36:44.372034', 'bc2cc6d9f4ae3ecfec095ac3e2b6d620', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.007344s ago] ('component_loaded', '{"component": "http"}', 'LOCAL', '2021-07-13 00:36:44.372284', '2021-07-13 00:36:44.372284', '6e70b35da06f3ae2c69cc1598afbb3ab', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.007638s ago] ('component_loaded', '{"component": "lovelace"}', 'LOCAL', '2021-07-13 00:36:44.372451', '2021-07-13 00:36:44.372451', 'e70bfb4394358c36f9623cc1cae295c3', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.007915s ago] ('service_registered', '{"domain": "input_boolean", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.373600', '2021-07-13 00:36:44.373600', '74394be95a4e5bffda242b73152631cb', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.00815s ago] ('service_registered', '{"domain": "input_boolean", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.373827', '2021-07-13 00:36:44.373827', '477c4bbc11367af05847addbd6f60331', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.008355s ago] ('service_registered', '{"domain": "input_boolean", "service": "turn_off"}', 'LOCAL', '2021-07-13 00:36:44.374017', '2021-07-13 00:36:44.374017', '8108c6ae30a85038eaf6a9c0ce9ba95c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.008548s ago] ('service_registered', '{"domain": "input_boolean", "service": "toggle"}', 'LOCAL', '2021-07-13 00:36:44.374193', '2021-07-13 00:36:44.374193', '8a3d0207875ae5f6deaea71c7636f84a', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.008739s ago] ('service_registered', '{"domain": "input_datetime", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.374765', '2021-07-13 00:36:44.374765', '0d77c588c5626d5ac70c510dd725269e', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.00893s ago] ('service_registered', '{"domain": "input_datetime", "service": "set_datetime"}', 'LOCAL', '2021-07-13 00:36:44.374952', '2021-07-13 00:36:44.374952', '65fd36f8e4ff69031ea75ad0f0ed36e4', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.009153s ago] ('service_registered', '{"domain": "input_number", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.375480', '2021-07-13 00:36:44.375480', '7c373dbe61ce36e3782e7613ae54534f', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.009364s ago] ('service_registered', '{"domain": "input_number", "service": "set_value"}', 'LOCAL', '2021-07-13 00:36:44.375712', '2021-07-13 00:36:44.375712', 'fd83044b87f1aac172e9545ad791d27c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.009569s ago] ('service_registered', '{"domain": "input_number", "service": "increment"}', 'LOCAL', '2021-07-13 00:36:44.375904', '2021-07-13 00:36:44.375904', '811d22bf20945bc7429abee7074c8c6d', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.009759s ago] ('service_registered', '{"domain": "input_number", "service": "decrement"}', 'LOCAL', '2021-07-13 00:36:44.376077', '2021-07-13 00:36:44.376077', '41335e8234ceb7d724b8644c368f797f', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.009956s ago] ('service_registered', '{"domain": "input_select", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.376536', '2021-07-13 00:36:44.376536', 'ca8e647c426b47073bef81d36f4e410b', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01019s ago] ('service_registered', '{"domain": "input_select", "service": "select_option"}', 'LOCAL', '2021-07-13 00:36:44.381297', '2021-07-13 00:36:44.381297', 'd75fbc84194933999d37d513f9cd57f9', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.0104s ago] ('service_registered', '{"domain": "input_select", "service": "select_next"}', 'LOCAL', '2021-07-13 00:36:44.381724', '2021-07-13 00:36:44.381724', '9b0a029af54986fb80a5db638e16a374', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01062s ago] ('service_registered', '{"domain": "input_select", "service": "select_previous"}', 'LOCAL', '2021-07-13 00:36:44.382042', '2021-07-13 00:36:44.382042', '12135130d29f56aee0d6b198ec64bcf6', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01085s ago] ('service_registered', '{"domain": "input_select", "service": "select_first"}', 'LOCAL', '2021-07-13 00:36:44.382233', '2021-07-13 00:36:44.382233', '8789428c14847c7b99a6f77993fa3e78', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01105s ago] ('service_registered', '{"domain": "input_select", "service": "select_last"}', 'LOCAL', '2021-07-13 00:36:44.382412', '2021-07-13 00:36:44.382412', 'bd2921b59859354f30a85a06d169965a', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01126s ago] ('service_registered', '{"domain": "input_select", "service": "set_options"}', 'LOCAL', '2021-07-13 00:36:44.382722', '2021-07-13 00:36:44.382722', 'caad6a01ff9d40aca63562f7a546c10a', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01146s ago] ('service_registered', '{"domain": "input_text", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.383282', '2021-07-13 00:36:44.383282', 'a89423ef97c3140605a2485add14aa5b', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01165s ago] ('service_registered', '{"domain": "input_text", "service": "set_value"}', 'LOCAL', '2021-07-13 00:36:44.383547', '2021-07-13 00:36:44.383547', '6cfa5b0f35c15751d7467d06bb2c7b0f', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01184s ago] ('service_registered', '{"domain": "timer", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.385697', '2021-07-13 00:36:44.385697', '9778048341c933bb63aafff56cc7f69c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01205s ago] ('service_registered', '{"domain": "timer", "service": "start"}', 'LOCAL', '2021-07-13 00:36:44.386129', '2021-07-13 00:36:44.386129', '73ed7f7879fcbd690bf373a5443af880', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01225s ago] ('service_registered', '{"domain": "timer", "service": "pause"}', 'LOCAL', '2021-07-13 00:36:44.386407', '2021-07-13 00:36:44.386407', '14b50d7dfa6fa483f19f8f88f2366ac0', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01245s ago] ('service_registered', '{"domain": "timer", "service": "cancel"}', 'LOCAL', '2021-07-13 00:36:44.386597', '2021-07-13 00:36:44.386597', 'f538ffcb4c3ffa84f16a3249d0ee73a6', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01264s ago] ('service_registered', '{"domain": "timer", "service": "finish"}', 'LOCAL', '2021-07-13 00:36:44.386834', '2021-07-13 00:36:44.386834', 'c3e9542538e6d0bb4136b7554e065f8f', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01284s ago] ('service_registered', '{"domain": "zone", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.387495', '2021-07-13 00:36:44.387495', 'c7e467c12216d8bd958cf0e174074936', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01304s ago] ('service_registered', '{"domain": "automation", "service": "trigger"}', 'LOCAL', '2021-07-13 00:36:44.389230', '2021-07-13 00:36:44.389230', 'd5f646b9efd5703b2306acacd56bba91', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01326s ago] ('service_registered', '{"domain": "automation", "service": "toggle"}', 'LOCAL', '2021-07-13 00:36:44.389713', '2021-07-13 00:36:44.389713', '005551e4a98dc58bd94eb018fb361692', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01346s ago] ('service_registered', '{"domain": "automation", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.390063', '2021-07-13 00:36:44.390063', '7823a2e5f99a777bc8d1224e33379fdb', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01365s ago] ('service_registered', '{"domain": "automation", "service": "turn_off"}', 'LOCAL', '2021-07-13 00:36:44.390737', '2021-07-13 00:36:44.390737', 'acd25c8ba3c577407eea091446d65895', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01383s ago] ('service_registered', '{"domain": "automation", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.390973', '2021-07-13 00:36:44.390973', '262a044e573e18e5abec75daf118dbda', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01403s ago] ('service_registered', '{"domain": "script", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.394427', '2021-07-13 00:36:44.394427', '1258b6a5089f3f26f9eee2389c67df3c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01424s ago] ('service_registered', '{"domain": "script", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.394649', '2021-07-13 00:36:44.394649', 'd8904917b1ed3e5b79300014d55ac638', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01444s ago] ('service_registered', '{"domain": "script", "service": "turn_off"}', 'LOCAL', '2021-07-13 00:36:44.394845', '2021-07-13 00:36:44.394845', '174bd68eca7b8fdd5313bac6a61920b0', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01463s ago] ('service_registered', '{"domain": "script", "service": "toggle"}', 'LOCAL', '2021-07-13 00:36:44.394983', '2021-07-13 00:36:44.394983', '174293b32c61325502d8f129655cbc05', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01482s ago] ('component_loaded', '{"component": "counter"}', 'LOCAL', '2021-07-13 00:36:44.397952', '2021-07-13 00:36:44.397952', '2312e682a508748201d542068d734bb0', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01503s ago] ('component_loaded', '{"component": "binary_sensor"}', 'LOCAL', '2021-07-13 00:36:44.398720', '2021-07-13 00:36:44.398720', '9f510e367db0fa919bd1be3f9f40d78c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01524s ago] ('component_loaded', '{"component": "input_boolean"}', 'LOCAL', '2021-07-13 00:36:44.398910', '2021-07-13 00:36:44.398910', 'db290bc70b36caabc48862aedcab938b', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01544s ago] ('component_loaded', '{"component": "input_datetime"}', 'LOCAL', '2021-07-13 00:36:44.399135', '2021-07-13 00:36:44.399135', '2b9f984a0605000986227921208698ad', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01563s ago] ('component_loaded', '{"component": "input_number"}', 'LOCAL', '2021-07-13 00:36:44.399323', '2021-07-13 00:36:44.399323', '5d51dc101ab1b708b3f37df6dde6b47e', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01582s ago] ('component_loaded', '{"component": "input_select"}', 'LOCAL', '2021-07-13 00:36:44.399513', '2021-07-13 00:36:44.399513', '453508adcaf621dbd7b769892c33a008', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01601s ago] ('component_loaded', '{"component": "input_text"}', 'LOCAL', '2021-07-13 00:36:44.399631', '2021-07-13 00:36:44.399631', '401e92c8cb9c1929f68a2e00f590cf3e', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01623s ago] ('service_registered', '{"domain": "scene", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.399783', '2021-07-13 00:36:44.399783', '8f66760f684ac2525cb12d41dc2b5adf', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01643s ago] ('service_registered', '{"domain": "scene", "service": "apply"}', 'LOCAL', '2021-07-13 00:36:44.400452', '2021-07-13 00:36:44.400452', 'e826665613326bab0619685bf183838c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01661s ago] ('service_registered', '{"domain": "scene", "service": "create"}', 'LOCAL', '2021-07-13 00:36:44.400644', '2021-07-13 00:36:44.400644', '40706330bb20b32075259372ac580fd6', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.0168s ago] ('component_loaded', '{"component": "timer"}', 'LOCAL', '2021-07-13 00:36:44.400850', '2021-07-13 00:36:44.400850', '8ee0db8c1909a2608f456507a2527a7d', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01699s ago] ('state_changed', '{}', 'LOCAL', '2021-07-13 00:36:44.401101', '2021-07-13 00:36:44.401101', '5406fa9d7fe68bace66aa68e43c62e10', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01723s ago] ('component_loaded', '{"component": "automation"}', 'LOCAL', '2021-07-13 00:36:44.401358', '2021-07-13 00:36:44.401358', '8ca9fa30432f44f4ee21a1ae7fb8acbd', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01743s ago] ('component_loaded', '{"component": "script"}', 'LOCAL', '2021-07-13 00:36:44.401742', '2021-07-13 00:36:44.401742', '08b30ef1b408101c70b67e56ba0aeec8', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01762s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.415014', '2021-07-13 00:36:44.415014', '298281d0624f0f044fe2ec090796dcf1', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01781s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.434559', '2021-07-13 00:36:44.434559', 'd898d93fb00a50e739f7287f93ef9cef', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01802s ago] ('service_registered', '{"domain": "system_log", "service": "clear"}', 'LOCAL', '2021-07-13 00:36:44.437761', '2021-07-13 00:36:44.437761', 'e03a7abefa4d370e69a36b1b2f27a76b', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01823s ago] ('service_registered', '{"domain": "system_log", "service": "write"}', 'LOCAL', '2021-07-13 00:36:44.437919', '2021-07-13 00:36:44.437919', '4dc384c8c273f6a85d8ba0f52d240e82', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01843s ago] ('service_registered', '{"domain": "scene", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.450514', '2021-07-13 00:36:44.450514', '52705f19699549e8b6b75c83266458d9', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01862s ago] ('component_loaded', '{"component": "webhook"}', 'LOCAL', '2021-07-13 00:36:44.461091', '2021-07-13 00:36:44.461091', '8810563e04c2c78ce31af313c5694964', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01881s ago] ('component_loaded', '{"component": "api"}', 'LOCAL', '2021-07-13 00:36:44.461395', '2021-07-13 00:36:44.461395', '2d8030ca581c149082aacca1bfe86502', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01902s ago] ('component_loaded', '{"component": "auth"}', 'LOCAL', '2021-07-13 00:36:44.461606', '2021-07-13 00:36:44.461606', '793290d7d223f20b72787ba8caaaedf5', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01923s ago] ('component_loaded', '{"component": "config.area_registry"}', 'LOCAL', '2021-07-13 00:36:44.462973', '2021-07-13 00:36:44.462973', 'b3fb17809d785e6134a9673c1d94e3ba', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01943s ago] ('component_loaded', '{"component": "config.auth"}', 'LOCAL', '2021-07-13 00:36:44.465860', '2021-07-13 00:36:44.465860', 'da2d7ec5aa3088b24d5d63f3cf5be88d', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01963s ago] ('component_loaded', '{"component": "config.auth_provider_homeassistant"}', 'LOCAL', '2021-07-13 00:36:44.467043', '2021-07-13 00:36:44.467043', '27196f84014149e0a72ae1e5ce7bb33a', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.01982s ago] ('component_loaded', '{"component": "config.automation"}', 'LOCAL', '2021-07-13 00:36:44.469889', '2021-07-13 00:36:44.469889', '9b717e59068cc4eff6b64bb5899370f0', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02002s ago] ('component_loaded', '{"component": "config.config_entries"}', 'LOCAL', '2021-07-13 00:36:44.477257', '2021-07-13 00:36:44.477257', '013e4eee29dff5d3ed9d8f09531ebd66', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02036s ago] ('component_loaded', '{"component": "config.core"}', 'LOCAL', '2021-07-13 00:36:44.478529', '2021-07-13 00:36:44.478529', '46c8ced62254c1fe38671d039b0085e1', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02056s ago] ('component_loaded', '{"component": "config.customize"}', 'LOCAL', '2021-07-13 00:36:44.479555', '2021-07-13 00:36:44.479555', '829fd2c78e26a7973303fbe30d932702', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02075s ago] ('component_loaded', '{"component": "config.device_registry"}', 'LOCAL', '2021-07-13 00:36:44.480455', '2021-07-13 00:36:44.480455', '3dbb2e3ad6922f096c623f432c125a6b', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02094s ago] ('component_loaded', '{"component": "config.entity_registry"}', 'LOCAL', '2021-07-13 00:36:44.481721', '2021-07-13 00:36:44.481721', 'd5ab79fe50679921c92865600ed2ef55', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02116s ago] ('component_loaded', '{"component": "config.group"}', 'LOCAL', '2021-07-13 00:36:44.482792', '2021-07-13 00:36:44.482792', '3336c61075c8ec6195d5d41a23ef39f3', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02137s ago] ('component_loaded', '{"component": "config.script"}', 'LOCAL', '2021-07-13 00:36:44.483881', '2021-07-13 00:36:44.483881', '1d206bac948b61f777f6696c4d3f86b7', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02156s ago] ('component_loaded', '{"component": "config.scene"}', 'LOCAL', '2021-07-13 00:36:44.484934', '2021-07-13 00:36:44.484934', 'af6c46655ba44b68216d6b841a61fb93', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02175s ago] ('component_loaded', '{"component": "system_log"}', 'LOCAL', '2021-07-13 00:36:44.485359', '2021-07-13 00:36:44.485359', 'e5141f1c18404c16326e5282b279c7c2', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02194s ago] ('component_loaded', '{"component": "websocket_api"}', 'LOCAL', '2021-07-13 00:36:44.485598', '2021-07-13 00:36:44.485598', '0c2090f604d4055cab42789e9bcbfcfc', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02216s ago] ('component_loaded', '{"component": "scene"}', 'LOCAL', '2021-07-13 00:36:44.487410', '2021-07-13 00:36:44.487410', '8fa67e3759b76744990899ade5e27d13', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02235s ago] ('component_loaded', '{"component": "zone"}', 'LOCAL', '2021-07-13 00:36:44.487664', '2021-07-13 00:36:44.487664', 'e812869abd9a0f1287305b5593e9b834', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02254s ago] ('component_loaded', '{"component": "image"}', 'LOCAL', '2021-07-13 00:36:44.493394', '2021-07-13 00:36:44.493394', 'b04e69199e50921c3840a97a326cf656', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02273s ago] ('component_loaded', '{"component": "media_source"}', 'LOCAL', '2021-07-13 00:36:44.493592', '2021-07-13 00:36:44.493592', '8b0a612138815df9bf9a269dfca6df6d', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02292s ago] ('component_loaded', '{"component": "system_health"}', 'LOCAL', '2021-07-13 00:36:44.493714', '2021-07-13 00:36:44.493714', 'e7ffd32da6538fbba519660a6ef95286', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02314s ago] ('component_loaded', '{"component": "config"}', 'LOCAL', '2021-07-13 00:36:44.498136', '2021-07-13 00:36:44.498136', '4941a86affb2a585dc567ab2ed067c18', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02335s ago] ('entity_registry_updated', '{"action": "create", "entity_id": "binary_sensor.updater"}', 'LOCAL', '2021-07-13 00:36:44.513166', '2021-07-13 00:36:44.513166', '8aedc85d46f9bb1b03ebeac142e0a632', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02355s ago] ('state_changed', '{}', 'LOCAL', '2021-07-13 00:36:44.513365', '2021-07-13 00:36:44.513365', '01df94eb19b3e55911223b65aec3d0e4', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02374s ago] ('component_loaded', '{"component": "recorder"}', 'LOCAL', '2021-07-13 00:36:44.514290', '2021-07-13 00:36:44.514290', '29d494319d4df76a385a282c3087e7aa', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02392s ago] ('component_loaded', '{"component": "search"}', 'LOCAL', '2021-07-13 00:36:44.514989', '2021-07-13 00:36:44.514989', '4d761f427513b2debaae41a03bb2619c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02422s ago] ('component_loaded', '{"component": "network"}', 'LOCAL', '2021-07-13 00:36:44.518775', '2021-07-13 00:36:44.518775', '912129c4d11d7463a13111162717717c', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.0245s ago] ('component_loaded', '{"component": "analytics"}', 'LOCAL', '2021-07-13 00:36:44.518949', '2021-07-13 00:36:44.518949', '7a6347ffa519cdc2ddd5dd38d3841c68', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02472s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.522272', '2021-07-13 00:36:44.522272', 'bab1f178ee62d6526742f9dc538bdd0e', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02491s ago] ('component_loaded', '{"component": "history"}', 'LOCAL', '2021-07-13 00:36:44.523618', '2021-07-13 00:36:44.523618', 'b26a088f52a3e4a6418889878c9697f7', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02514s ago] ('component_loaded', '{"component": "ssdp"}', 'LOCAL', '2021-07-13 00:36:44.526604', '2021-07-13 00:36:44.526604', 'd7e742eeb202ccfddb6ff1f0e3562ebd', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02535s ago] ('service_registered', '{"domain": "person", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.527087', '2021-07-13 00:36:44.527087', '50baca2eca1131845b191db12afbbf4a', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02555s ago] ('component_loaded', '{"component": "person"}', 'LOCAL', '2021-07-13 00:36:44.528031', '2021-07-13 00:36:44.528031', '7416feea087c96491564a5e8833f9595', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02575s ago] ('component_loaded', '{"component": "onboarding"}', 'LOCAL', '2021-07-13 00:36:44.535670', '2021-07-13 00:36:44.535670', '82e46dc513fd0f3af0f2e8ad25efd528', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02594s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.538536', '2021-07-13 00:36:44.538536', '0789fd087c5f810868c92c4e775176c9', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02617s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.538843', '2021-07-13 00:36:44.538843', '5067f82aba3d1eaaae27c9c4b60ca699', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02637s ago] ('service_registered', '{"domain": "frontend", "service": "set_theme"}', 'LOCAL', '2021-07-13 00:36:44.539182', '2021-07-13 00:36:44.539182', 'efe0c59d59f863d31e54da29e4dc4ae9', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02656s ago] ('service_registered', '{"domain": "frontend", "service": "reload_themes"}', 'LOCAL', '2021-07-13 00:36:44.539303', '2021-07-13 00:36:44.539303', 'ba7827b459c250bcc128323cf2de2d40', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02676s ago] ('component_loaded', '{"component": "frontend"}', 'LOCAL', '2021-07-13 00:36:44.539558', '2021-07-13 00:36:44.539558', '61d9d57230b354aa187987b72db57f64', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02695s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.545901', '2021-07-13 00:36:44.545901', '8cd53120136baf9a14cad4653864872d', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02716s ago] ('service_registered', '{"domain": "logbook", "service": "log"}', 'LOCAL', '2021-07-13 00:36:44.546260', '2021-07-13 00:36:44.546260', '2d9321f86018efdbea4f41f159d57141', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02737s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.547324', '2021-07-13 00:36:44.547324', 'c1aaa0bb2b8a9247c94571d70c52952a', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02756s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.548040', '2021-07-13 00:36:44.548040', '994b34d97f5d608d20c32f5d4b7715ae', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02775s ago] ('component_loaded', '{"component": "map"}', 'LOCAL', '2021-07-13 00:36:44.552415', '2021-07-13 00:36:44.552415', '3a0fe40b58d6d1b987f7898840129c87', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02794s ago] ('component_loaded', '{"component": "my"}', 'LOCAL', '2021-07-13 00:36:44.552890', '2021-07-13 00:36:44.552890', 'f7bf7a58e5ae8a4fec6d5d215b59ea9b', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02818s ago] ('component_loaded', '{"component": "logbook"}', 'LOCAL', '2021-07-13 00:36:44.554564', '2021-07-13 00:36:44.554564', 'faf1e94c3dabf7950059c65645281ca9', None, None)
INFO:sqlalchemy.engine.Engine:INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.02838s ago] ('homeassistant_stop', '{}', 'LOCAL', '2021-07-13 00:36:44.557730', '2021-07-13 00:36:44.557730', '29c989378879546ed41574a134c3527c', None, None)
INFO:sqlalchemy.engine.Engine:UPDATE recorder_runs SET "end"=? WHERE recorder_runs.run_id = ?
INFO:sqlalchemy.engine.Engine:[generated in 0.00013s] ('2021-07-13 00:36:44.558377', 1)
INFO:sqlalchemy.engine.Engine:INSERT INTO states (domain, entity_id, state, attributes, event_id, last_changed, last_updated, created, old_state_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[generated in 0.00015s] ('zone', 'zone.home', 'zoning', '{"latitude": 32.87336, "longitude": -117.22743, "radius": 100, "passive": false, "editable": true, "friendly_name": "test home", "icon": "mdi:home"}', 71, '2021-07-13 00:36:44.401101', '2021-07-13 00:36:44.401101', '2021-07-13 00:36:44.401101', None)
INFO:sqlalchemy.engine.Engine:INSERT INTO states (domain, entity_id, state, attributes, event_id, last_changed, last_updated, created, old_state_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[cached since 0.0004761s ago] ('binary_sensor', 'binary_sensor.updater', 'unavailable', '{"friendly_name": "Updater"}', 103, '2021-07-13 00:36:44.513365', '2021-07-13 00:36:44.513365', '2021-07-13 00:36:44.513365', None)
INFO:sqlalchemy.engine.Engine:COMMIT
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
INFO:tests.common:Writing data to core.entity_registry: {'version': 1, 'key': 'core.entity_registry', 'data': {'entities': [{'entity_id': 'binary_sensor.updater', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'updater', 'platform': 'updater', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': None, 'unit_of_measurement': None, 'original_name': 'Updater', 'original_icon': None}]}}
INFO:tests.common:Writing data to http: {'version': 1, 'key': 'http', 'data': {'login_attempts_threshold': -1, 'server_port': 8123, 'cors_allowed_origins': ['https://cast.home-assistant.io'], 'ssl_profile': 'modern', 'ip_ban_enabled': True}}
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Exception in callback EventBus.async_listen_once.<locals>._onetime_listener(<Event homeassistant_stop[L]>) at /build/source/homeassistant/core.py:819
Traceback (most recent call last):
File "/nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/lib/python3.8/asyncio/events.py", line 81, in _run
self._context.run(self._callback, *self._args)
File "/build/source/homeassistant/core.py", line 833, in _onetime_listener
self._hass.async_run_job(listener, event)
File "/build/source/homeassistant/core.py", line 451, in async_run_job
return self.async_run_hass_job(HassJob(target), *args)
File "/build/source/homeassistant/core.py", line 432, in async_run_hass_job
hassjob.target(*args)
File "/build/source/homeassistant/components/ssdp/__init__.py", line 194, in async_stop
assert self._cancel_scan is not None
AssertionError
INFO sqlalchemy.engine.Engine:base.py:136 BEGIN (implicit)
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00055s] ('service_registered', '{"domain": "recorder", "service": "purge"}', 'LOCAL', '2021-07-13 00:36:44.360354', '2021-07-13 00:36:44.360354', 'e0d3747b71d3e5278f348e35a9dbe916', None, None)
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.002728s ago] ('service_registered', '{"domain": "recorder", "service": "purge_entities"}', 'LOCAL', '2021-07-13 00:36:44.360474', '2021-07-13 00:36:44.360474', '27921c16c2bb43595eda70da5f2a2a04', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.003086s ago] ('service_registered', '{"domain": "recorder", "service": "enable"}', 'LOCAL', '2021-07-13 00:36:44.361476', '2021-07-13 00:36:44.361476', '63ebc0c2e3edc74829142e7bfa015977', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.003327s ago] ('service_registered', '{"domain": "recorder", "service": "disable"}', 'LOCAL', '2021-07-13 00:36:44.361593', '2021-07-13 00:36:44.361593', '97b18ae6c5328fd63fb9b6667fef99e1', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.003533s ago] ('component_loaded', '{"component": "blueprint"}', 'LOCAL', '2021-07-13 00:36:44.364024', '2021-07-13 00:36:44.364024', 'b059a3e146cafdfff2640361946c855c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.00373s ago] ('component_loaded', '{"component": "trace"}', 'LOCAL', '2021-07-13 00:36:44.364691', '2021-07-13 00:36:44.364691', 'cad96f12ffdd411d4a2a856ad99c7af3', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.003922s ago] ('component_loaded', '{"component": "device_automation"}', 'LOCAL', '2021-07-13 00:36:44.364926', '2021-07-13 00:36:44.364926', '6788fb05718cad0a2ccb1f4caf73da66', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.004149s ago] ('service_registered', '{"domain": "homeassistant", "service": "turn_off"}', 'LOCAL', '2021-07-13 00:36:44.366937', '2021-07-13 00:36:44.366937', '2583fa45a3a12fa9bc75cc2afd7bd6f8', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.004352s ago] ('service_registered', '{"domain": "homeassistant", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.367140', '2021-07-13 00:36:44.367140', 'c67648c6e88e82b2a32cc10e5a792f76', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.004543s ago] ('service_registered', '{"domain": "homeassistant", "service": "toggle"}', 'LOCAL', '2021-07-13 00:36:44.367307', '2021-07-13 00:36:44.367307', '57a760d849d0e54cce83458c2698e2a9', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.004733s ago] ('service_registered', '{"domain": "homeassistant", "service": "stop"}', 'LOCAL', '2021-07-13 00:36:44.367530', '2021-07-13 00:36:44.367530', 'a6f4df09f0f47bed43a056a130a1cb39', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.004924s ago] ('service_registered', '{"domain": "homeassistant", "service": "restart"}', 'LOCAL', '2021-07-13 00:36:44.367703', '2021-07-13 00:36:44.367703', 'edb38684e64b005dfccb11a009621f62', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.005144s ago] ('service_registered', '{"domain": "homeassistant", "service": "check_config"}', 'LOCAL', '2021-07-13 00:36:44.367862', '2021-07-13 00:36:44.367862', 'a38eeb89dca377429b617ef801ab799a', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.005348s ago] ('service_registered', '{"domain": "homeassistant", "service": "update_entity"}', 'LOCAL', '2021-07-13 00:36:44.368029', '2021-07-13 00:36:44.368029', '99a9efe06745740774cdcab3626901fe', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.005544s ago] ('service_registered', '{"domain": "homeassistant", "service": "reload_core_config"}', 'LOCAL', '2021-07-13 00:36:44.368188', '2021-07-13 00:36:44.368188', '4f33135f870e12138285e4660b82fff2', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.005735s ago] ('service_registered', '{"domain": "homeassistant", "service": "set_location"}', 'LOCAL', '2021-07-13 00:36:44.368416', '2021-07-13 00:36:44.368416', '3dcafa32c3db1d054ec9893d3aac22eb', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.005926s ago] ('service_registered', '{"domain": "homeassistant", "service": "reload_config_entry"}', 'LOCAL', '2021-07-13 00:36:44.368554', '2021-07-13 00:36:44.368554', '43bbe8b6a01d744e290422870a51819e', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.006146s ago] ('component_loaded', '{"component": "tag"}', 'LOCAL', '2021-07-13 00:36:44.368891', '2021-07-13 00:36:44.368891', '8c842d1e0ddc7f35c2c4a1cbb01a7fac', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.006349s ago] ('component_loaded', '{"component": "homeassistant"}', 'LOCAL', '2021-07-13 00:36:44.370493', '2021-07-13 00:36:44.370493', 'cbcc7c81da2d457819412e408ac48ffe', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.006541s ago] ('service_registered', '{"domain": "counter", "service": "increment"}', 'LOCAL', '2021-07-13 00:36:44.371271', '2021-07-13 00:36:44.371271', '57bfa019a058417feafdadeb07a353ec', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.006734s ago] ('service_registered', '{"domain": "counter", "service": "decrement"}', 'LOCAL', '2021-07-13 00:36:44.371503', '2021-07-13 00:36:44.371503', '278beb0099fda774c0bf2fbb3cb56204', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.006923s ago] ('service_registered', '{"domain": "counter", "service": "reset"}', 'LOCAL', '2021-07-13 00:36:44.371690', '2021-07-13 00:36:44.371690', 'b72d969a629aeaa1c77f47033936702c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.007139s ago] ('service_registered', '{"domain": "counter", "service": "configure"}', 'LOCAL', '2021-07-13 00:36:44.372034', '2021-07-13 00:36:44.372034', 'bc2cc6d9f4ae3ecfec095ac3e2b6d620', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.007344s ago] ('component_loaded', '{"component": "http"}', 'LOCAL', '2021-07-13 00:36:44.372284', '2021-07-13 00:36:44.372284', '6e70b35da06f3ae2c69cc1598afbb3ab', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.007638s ago] ('component_loaded', '{"component": "lovelace"}', 'LOCAL', '2021-07-13 00:36:44.372451', '2021-07-13 00:36:44.372451', 'e70bfb4394358c36f9623cc1cae295c3', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.007915s ago] ('service_registered', '{"domain": "input_boolean", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.373600', '2021-07-13 00:36:44.373600', '74394be95a4e5bffda242b73152631cb', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.00815s ago] ('service_registered', '{"domain": "input_boolean", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.373827', '2021-07-13 00:36:44.373827', '477c4bbc11367af05847addbd6f60331', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.008355s ago] ('service_registered', '{"domain": "input_boolean", "service": "turn_off"}', 'LOCAL', '2021-07-13 00:36:44.374017', '2021-07-13 00:36:44.374017', '8108c6ae30a85038eaf6a9c0ce9ba95c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.008548s ago] ('service_registered', '{"domain": "input_boolean", "service": "toggle"}', 'LOCAL', '2021-07-13 00:36:44.374193', '2021-07-13 00:36:44.374193', '8a3d0207875ae5f6deaea71c7636f84a', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.008739s ago] ('service_registered', '{"domain": "input_datetime", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.374765', '2021-07-13 00:36:44.374765', '0d77c588c5626d5ac70c510dd725269e', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.00893s ago] ('service_registered', '{"domain": "input_datetime", "service": "set_datetime"}', 'LOCAL', '2021-07-13 00:36:44.374952', '2021-07-13 00:36:44.374952', '65fd36f8e4ff69031ea75ad0f0ed36e4', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.009153s ago] ('service_registered', '{"domain": "input_number", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.375480', '2021-07-13 00:36:44.375480', '7c373dbe61ce36e3782e7613ae54534f', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.009364s ago] ('service_registered', '{"domain": "input_number", "service": "set_value"}', 'LOCAL', '2021-07-13 00:36:44.375712', '2021-07-13 00:36:44.375712', 'fd83044b87f1aac172e9545ad791d27c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.009569s ago] ('service_registered', '{"domain": "input_number", "service": "increment"}', 'LOCAL', '2021-07-13 00:36:44.375904', '2021-07-13 00:36:44.375904', '811d22bf20945bc7429abee7074c8c6d', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.009759s ago] ('service_registered', '{"domain": "input_number", "service": "decrement"}', 'LOCAL', '2021-07-13 00:36:44.376077', '2021-07-13 00:36:44.376077', '41335e8234ceb7d724b8644c368f797f', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.009956s ago] ('service_registered', '{"domain": "input_select", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.376536', '2021-07-13 00:36:44.376536', 'ca8e647c426b47073bef81d36f4e410b', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01019s ago] ('service_registered', '{"domain": "input_select", "service": "select_option"}', 'LOCAL', '2021-07-13 00:36:44.381297', '2021-07-13 00:36:44.381297', 'd75fbc84194933999d37d513f9cd57f9', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.0104s ago] ('service_registered', '{"domain": "input_select", "service": "select_next"}', 'LOCAL', '2021-07-13 00:36:44.381724', '2021-07-13 00:36:44.381724', '9b0a029af54986fb80a5db638e16a374', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01062s ago] ('service_registered', '{"domain": "input_select", "service": "select_previous"}', 'LOCAL', '2021-07-13 00:36:44.382042', '2021-07-13 00:36:44.382042', '12135130d29f56aee0d6b198ec64bcf6', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01085s ago] ('service_registered', '{"domain": "input_select", "service": "select_first"}', 'LOCAL', '2021-07-13 00:36:44.382233', '2021-07-13 00:36:44.382233', '8789428c14847c7b99a6f77993fa3e78', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01105s ago] ('service_registered', '{"domain": "input_select", "service": "select_last"}', 'LOCAL', '2021-07-13 00:36:44.382412', '2021-07-13 00:36:44.382412', 'bd2921b59859354f30a85a06d169965a', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01126s ago] ('service_registered', '{"domain": "input_select", "service": "set_options"}', 'LOCAL', '2021-07-13 00:36:44.382722', '2021-07-13 00:36:44.382722', 'caad6a01ff9d40aca63562f7a546c10a', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01146s ago] ('service_registered', '{"domain": "input_text", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.383282', '2021-07-13 00:36:44.383282', 'a89423ef97c3140605a2485add14aa5b', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01165s ago] ('service_registered', '{"domain": "input_text", "service": "set_value"}', 'LOCAL', '2021-07-13 00:36:44.383547', '2021-07-13 00:36:44.383547', '6cfa5b0f35c15751d7467d06bb2c7b0f', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01184s ago] ('service_registered', '{"domain": "timer", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.385697', '2021-07-13 00:36:44.385697', '9778048341c933bb63aafff56cc7f69c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01205s ago] ('service_registered', '{"domain": "timer", "service": "start"}', 'LOCAL', '2021-07-13 00:36:44.386129', '2021-07-13 00:36:44.386129', '73ed7f7879fcbd690bf373a5443af880', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01225s ago] ('service_registered', '{"domain": "timer", "service": "pause"}', 'LOCAL', '2021-07-13 00:36:44.386407', '2021-07-13 00:36:44.386407', '14b50d7dfa6fa483f19f8f88f2366ac0', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01245s ago] ('service_registered', '{"domain": "timer", "service": "cancel"}', 'LOCAL', '2021-07-13 00:36:44.386597', '2021-07-13 00:36:44.386597', 'f538ffcb4c3ffa84f16a3249d0ee73a6', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01264s ago] ('service_registered', '{"domain": "timer", "service": "finish"}', 'LOCAL', '2021-07-13 00:36:44.386834', '2021-07-13 00:36:44.386834', 'c3e9542538e6d0bb4136b7554e065f8f', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01284s ago] ('service_registered', '{"domain": "zone", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.387495', '2021-07-13 00:36:44.387495', 'c7e467c12216d8bd958cf0e174074936', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01304s ago] ('service_registered', '{"domain": "automation", "service": "trigger"}', 'LOCAL', '2021-07-13 00:36:44.389230', '2021-07-13 00:36:44.389230', 'd5f646b9efd5703b2306acacd56bba91', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01326s ago] ('service_registered', '{"domain": "automation", "service": "toggle"}', 'LOCAL', '2021-07-13 00:36:44.389713', '2021-07-13 00:36:44.389713', '005551e4a98dc58bd94eb018fb361692', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01346s ago] ('service_registered', '{"domain": "automation", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.390063', '2021-07-13 00:36:44.390063', '7823a2e5f99a777bc8d1224e33379fdb', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01365s ago] ('service_registered', '{"domain": "automation", "service": "turn_off"}', 'LOCAL', '2021-07-13 00:36:44.390737', '2021-07-13 00:36:44.390737', 'acd25c8ba3c577407eea091446d65895', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01383s ago] ('service_registered', '{"domain": "automation", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.390973', '2021-07-13 00:36:44.390973', '262a044e573e18e5abec75daf118dbda', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01403s ago] ('service_registered', '{"domain": "script", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.394427', '2021-07-13 00:36:44.394427', '1258b6a5089f3f26f9eee2389c67df3c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01424s ago] ('service_registered', '{"domain": "script", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.394649', '2021-07-13 00:36:44.394649', 'd8904917b1ed3e5b79300014d55ac638', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01444s ago] ('service_registered', '{"domain": "script", "service": "turn_off"}', 'LOCAL', '2021-07-13 00:36:44.394845', '2021-07-13 00:36:44.394845', '174bd68eca7b8fdd5313bac6a61920b0', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01463s ago] ('service_registered', '{"domain": "script", "service": "toggle"}', 'LOCAL', '2021-07-13 00:36:44.394983', '2021-07-13 00:36:44.394983', '174293b32c61325502d8f129655cbc05', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01482s ago] ('component_loaded', '{"component": "counter"}', 'LOCAL', '2021-07-13 00:36:44.397952', '2021-07-13 00:36:44.397952', '2312e682a508748201d542068d734bb0', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01503s ago] ('component_loaded', '{"component": "binary_sensor"}', 'LOCAL', '2021-07-13 00:36:44.398720', '2021-07-13 00:36:44.398720', '9f510e367db0fa919bd1be3f9f40d78c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01524s ago] ('component_loaded', '{"component": "input_boolean"}', 'LOCAL', '2021-07-13 00:36:44.398910', '2021-07-13 00:36:44.398910', 'db290bc70b36caabc48862aedcab938b', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01544s ago] ('component_loaded', '{"component": "input_datetime"}', 'LOCAL', '2021-07-13 00:36:44.399135', '2021-07-13 00:36:44.399135', '2b9f984a0605000986227921208698ad', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01563s ago] ('component_loaded', '{"component": "input_number"}', 'LOCAL', '2021-07-13 00:36:44.399323', '2021-07-13 00:36:44.399323', '5d51dc101ab1b708b3f37df6dde6b47e', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01582s ago] ('component_loaded', '{"component": "input_select"}', 'LOCAL', '2021-07-13 00:36:44.399513', '2021-07-13 00:36:44.399513', '453508adcaf621dbd7b769892c33a008', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01601s ago] ('component_loaded', '{"component": "input_text"}', 'LOCAL', '2021-07-13 00:36:44.399631', '2021-07-13 00:36:44.399631', '401e92c8cb9c1929f68a2e00f590cf3e', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01623s ago] ('service_registered', '{"domain": "scene", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.399783', '2021-07-13 00:36:44.399783', '8f66760f684ac2525cb12d41dc2b5adf', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01643s ago] ('service_registered', '{"domain": "scene", "service": "apply"}', 'LOCAL', '2021-07-13 00:36:44.400452', '2021-07-13 00:36:44.400452', 'e826665613326bab0619685bf183838c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01661s ago] ('service_registered', '{"domain": "scene", "service": "create"}', 'LOCAL', '2021-07-13 00:36:44.400644', '2021-07-13 00:36:44.400644', '40706330bb20b32075259372ac580fd6', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.0168s ago] ('component_loaded', '{"component": "timer"}', 'LOCAL', '2021-07-13 00:36:44.400850', '2021-07-13 00:36:44.400850', '8ee0db8c1909a2608f456507a2527a7d', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01699s ago] ('state_changed', '{}', 'LOCAL', '2021-07-13 00:36:44.401101', '2021-07-13 00:36:44.401101', '5406fa9d7fe68bace66aa68e43c62e10', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01723s ago] ('component_loaded', '{"component": "automation"}', 'LOCAL', '2021-07-13 00:36:44.401358', '2021-07-13 00:36:44.401358', '8ca9fa30432f44f4ee21a1ae7fb8acbd', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01743s ago] ('component_loaded', '{"component": "script"}', 'LOCAL', '2021-07-13 00:36:44.401742', '2021-07-13 00:36:44.401742', '08b30ef1b408101c70b67e56ba0aeec8', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01762s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.415014', '2021-07-13 00:36:44.415014', '298281d0624f0f044fe2ec090796dcf1', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01781s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.434559', '2021-07-13 00:36:44.434559', 'd898d93fb00a50e739f7287f93ef9cef', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01802s ago] ('service_registered', '{"domain": "system_log", "service": "clear"}', 'LOCAL', '2021-07-13 00:36:44.437761', '2021-07-13 00:36:44.437761', 'e03a7abefa4d370e69a36b1b2f27a76b', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01823s ago] ('service_registered', '{"domain": "system_log", "service": "write"}', 'LOCAL', '2021-07-13 00:36:44.437919', '2021-07-13 00:36:44.437919', '4dc384c8c273f6a85d8ba0f52d240e82', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01843s ago] ('service_registered', '{"domain": "scene", "service": "turn_on"}', 'LOCAL', '2021-07-13 00:36:44.450514', '2021-07-13 00:36:44.450514', '52705f19699549e8b6b75c83266458d9', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01862s ago] ('component_loaded', '{"component": "webhook"}', 'LOCAL', '2021-07-13 00:36:44.461091', '2021-07-13 00:36:44.461091', '8810563e04c2c78ce31af313c5694964', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01881s ago] ('component_loaded', '{"component": "api"}', 'LOCAL', '2021-07-13 00:36:44.461395', '2021-07-13 00:36:44.461395', '2d8030ca581c149082aacca1bfe86502', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01902s ago] ('component_loaded', '{"component": "auth"}', 'LOCAL', '2021-07-13 00:36:44.461606', '2021-07-13 00:36:44.461606', '793290d7d223f20b72787ba8caaaedf5', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01923s ago] ('component_loaded', '{"component": "config.area_registry"}', 'LOCAL', '2021-07-13 00:36:44.462973', '2021-07-13 00:36:44.462973', 'b3fb17809d785e6134a9673c1d94e3ba', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01943s ago] ('component_loaded', '{"component": "config.auth"}', 'LOCAL', '2021-07-13 00:36:44.465860', '2021-07-13 00:36:44.465860', 'da2d7ec5aa3088b24d5d63f3cf5be88d', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01963s ago] ('component_loaded', '{"component": "config.auth_provider_homeassistant"}', 'LOCAL', '2021-07-13 00:36:44.467043', '2021-07-13 00:36:44.467043', '27196f84014149e0a72ae1e5ce7bb33a', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.01982s ago] ('component_loaded', '{"component": "config.automation"}', 'LOCAL', '2021-07-13 00:36:44.469889', '2021-07-13 00:36:44.469889', '9b717e59068cc4eff6b64bb5899370f0', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02002s ago] ('component_loaded', '{"component": "config.config_entries"}', 'LOCAL', '2021-07-13 00:36:44.477257', '2021-07-13 00:36:44.477257', '013e4eee29dff5d3ed9d8f09531ebd66', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02036s ago] ('component_loaded', '{"component": "config.core"}', 'LOCAL', '2021-07-13 00:36:44.478529', '2021-07-13 00:36:44.478529', '46c8ced62254c1fe38671d039b0085e1', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02056s ago] ('component_loaded', '{"component": "config.customize"}', 'LOCAL', '2021-07-13 00:36:44.479555', '2021-07-13 00:36:44.479555', '829fd2c78e26a7973303fbe30d932702', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02075s ago] ('component_loaded', '{"component": "config.device_registry"}', 'LOCAL', '2021-07-13 00:36:44.480455', '2021-07-13 00:36:44.480455', '3dbb2e3ad6922f096c623f432c125a6b', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02094s ago] ('component_loaded', '{"component": "config.entity_registry"}', 'LOCAL', '2021-07-13 00:36:44.481721', '2021-07-13 00:36:44.481721', 'd5ab79fe50679921c92865600ed2ef55', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02116s ago] ('component_loaded', '{"component": "config.group"}', 'LOCAL', '2021-07-13 00:36:44.482792', '2021-07-13 00:36:44.482792', '3336c61075c8ec6195d5d41a23ef39f3', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02137s ago] ('component_loaded', '{"component": "config.script"}', 'LOCAL', '2021-07-13 00:36:44.483881', '2021-07-13 00:36:44.483881', '1d206bac948b61f777f6696c4d3f86b7', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02156s ago] ('component_loaded', '{"component": "config.scene"}', 'LOCAL', '2021-07-13 00:36:44.484934', '2021-07-13 00:36:44.484934', 'af6c46655ba44b68216d6b841a61fb93', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02175s ago] ('component_loaded', '{"component": "system_log"}', 'LOCAL', '2021-07-13 00:36:44.485359', '2021-07-13 00:36:44.485359', 'e5141f1c18404c16326e5282b279c7c2', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02194s ago] ('component_loaded', '{"component": "websocket_api"}', 'LOCAL', '2021-07-13 00:36:44.485598', '2021-07-13 00:36:44.485598', '0c2090f604d4055cab42789e9bcbfcfc', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02216s ago] ('component_loaded', '{"component": "scene"}', 'LOCAL', '2021-07-13 00:36:44.487410', '2021-07-13 00:36:44.487410', '8fa67e3759b76744990899ade5e27d13', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02235s ago] ('component_loaded', '{"component": "zone"}', 'LOCAL', '2021-07-13 00:36:44.487664', '2021-07-13 00:36:44.487664', 'e812869abd9a0f1287305b5593e9b834', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02254s ago] ('component_loaded', '{"component": "image"}', 'LOCAL', '2021-07-13 00:36:44.493394', '2021-07-13 00:36:44.493394', 'b04e69199e50921c3840a97a326cf656', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02273s ago] ('component_loaded', '{"component": "media_source"}', 'LOCAL', '2021-07-13 00:36:44.493592', '2021-07-13 00:36:44.493592', '8b0a612138815df9bf9a269dfca6df6d', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02292s ago] ('component_loaded', '{"component": "system_health"}', 'LOCAL', '2021-07-13 00:36:44.493714', '2021-07-13 00:36:44.493714', 'e7ffd32da6538fbba519660a6ef95286', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02314s ago] ('component_loaded', '{"component": "config"}', 'LOCAL', '2021-07-13 00:36:44.498136', '2021-07-13 00:36:44.498136', '4941a86affb2a585dc567ab2ed067c18', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02335s ago] ('entity_registry_updated', '{"action": "create", "entity_id": "binary_sensor.updater"}', 'LOCAL', '2021-07-13 00:36:44.513166', '2021-07-13 00:36:44.513166', '8aedc85d46f9bb1b03ebeac142e0a632', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02355s ago] ('state_changed', '{}', 'LOCAL', '2021-07-13 00:36:44.513365', '2021-07-13 00:36:44.513365', '01df94eb19b3e55911223b65aec3d0e4', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02374s ago] ('component_loaded', '{"component": "recorder"}', 'LOCAL', '2021-07-13 00:36:44.514290', '2021-07-13 00:36:44.514290', '29d494319d4df76a385a282c3087e7aa', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02392s ago] ('component_loaded', '{"component": "search"}', 'LOCAL', '2021-07-13 00:36:44.514989', '2021-07-13 00:36:44.514989', '4d761f427513b2debaae41a03bb2619c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02422s ago] ('component_loaded', '{"component": "network"}', 'LOCAL', '2021-07-13 00:36:44.518775', '2021-07-13 00:36:44.518775', '912129c4d11d7463a13111162717717c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.0245s ago] ('component_loaded', '{"component": "analytics"}', 'LOCAL', '2021-07-13 00:36:44.518949', '2021-07-13 00:36:44.518949', '7a6347ffa519cdc2ddd5dd38d3841c68', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02472s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.522272', '2021-07-13 00:36:44.522272', 'bab1f178ee62d6526742f9dc538bdd0e', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02491s ago] ('component_loaded', '{"component": "history"}', 'LOCAL', '2021-07-13 00:36:44.523618', '2021-07-13 00:36:44.523618', 'b26a088f52a3e4a6418889878c9697f7', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02514s ago] ('component_loaded', '{"component": "ssdp"}', 'LOCAL', '2021-07-13 00:36:44.526604', '2021-07-13 00:36:44.526604', 'd7e742eeb202ccfddb6ff1f0e3562ebd', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02535s ago] ('service_registered', '{"domain": "person", "service": "reload"}', 'LOCAL', '2021-07-13 00:36:44.527087', '2021-07-13 00:36:44.527087', '50baca2eca1131845b191db12afbbf4a', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02555s ago] ('component_loaded', '{"component": "person"}', 'LOCAL', '2021-07-13 00:36:44.528031', '2021-07-13 00:36:44.528031', '7416feea087c96491564a5e8833f9595', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02575s ago] ('component_loaded', '{"component": "onboarding"}', 'LOCAL', '2021-07-13 00:36:44.535670', '2021-07-13 00:36:44.535670', '82e46dc513fd0f3af0f2e8ad25efd528', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02594s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.538536', '2021-07-13 00:36:44.538536', '0789fd087c5f810868c92c4e775176c9', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02617s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.538843', '2021-07-13 00:36:44.538843', '5067f82aba3d1eaaae27c9c4b60ca699', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02637s ago] ('service_registered', '{"domain": "frontend", "service": "set_theme"}', 'LOCAL', '2021-07-13 00:36:44.539182', '2021-07-13 00:36:44.539182', 'efe0c59d59f863d31e54da29e4dc4ae9', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02656s ago] ('service_registered', '{"domain": "frontend", "service": "reload_themes"}', 'LOCAL', '2021-07-13 00:36:44.539303', '2021-07-13 00:36:44.539303', 'ba7827b459c250bcc128323cf2de2d40', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02676s ago] ('component_loaded', '{"component": "frontend"}', 'LOCAL', '2021-07-13 00:36:44.539558', '2021-07-13 00:36:44.539558', '61d9d57230b354aa187987b72db57f64', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02695s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.545901', '2021-07-13 00:36:44.545901', '8cd53120136baf9a14cad4653864872d', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02716s ago] ('service_registered', '{"domain": "logbook", "service": "log"}', 'LOCAL', '2021-07-13 00:36:44.546260', '2021-07-13 00:36:44.546260', '2d9321f86018efdbea4f41f159d57141', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02737s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.547324', '2021-07-13 00:36:44.547324', 'c1aaa0bb2b8a9247c94571d70c52952a', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02756s ago] ('panels_updated', '{}', 'LOCAL', '2021-07-13 00:36:44.548040', '2021-07-13 00:36:44.548040', '994b34d97f5d608d20c32f5d4b7715ae', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02775s ago] ('component_loaded', '{"component": "map"}', 'LOCAL', '2021-07-13 00:36:44.552415', '2021-07-13 00:36:44.552415', '3a0fe40b58d6d1b987f7898840129c87', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02794s ago] ('component_loaded', '{"component": "my"}', 'LOCAL', '2021-07-13 00:36:44.552890', '2021-07-13 00:36:44.552890', 'f7bf7a58e5ae8a4fec6d5d215b59ea9b', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02818s ago] ('component_loaded', '{"component": "logbook"}', 'LOCAL', '2021-07-13 00:36:44.554564', '2021-07-13 00:36:44.554564', 'faf1e94c3dabf7950059c65645281ca9', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO events (event_type, event_data, origin, time_fired, created, context_id, context_user_id, context_parent_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.02838s ago] ('homeassistant_stop', '{}', 'LOCAL', '2021-07-13 00:36:44.557730', '2021-07-13 00:36:44.557730', '29c989378879546ed41574a134c3527c', None, None)
INFO sqlalchemy.engine.Engine:base.py:136 UPDATE recorder_runs SET "end"=? WHERE recorder_runs.run_id = ?
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00013s] ('2021-07-13 00:36:44.558377', 1)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO states (domain, entity_id, state, attributes, event_id, last_changed, last_updated, created, old_state_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00015s] ('zone', 'zone.home', 'zoning', '{"latitude": 32.87336, "longitude": -117.22743, "radius": 100, "passive": false, "editable": true, "friendly_name": "test home", "icon": "mdi:home"}', 71, '2021-07-13 00:36:44.401101', '2021-07-13 00:36:44.401101', '2021-07-13 00:36:44.401101', None)
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO states (domain, entity_id, state, attributes, event_id, last_changed, last_updated, created, old_state_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [cached since 0.0004761s ago] ('binary_sensor', 'binary_sensor.updater', 'unavailable', '{"friendly_name": "Updater"}', 103, '2021-07-13 00:36:44.513365', '2021-07-13 00:36:44.513365', '2021-07-13 00:36:44.513365', None)
INFO sqlalchemy.engine.Engine:base.py:136 COMMIT
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
INFO tests.common:common.py:1015 Writing data to core.entity_registry: {'version': 1, 'key': 'core.entity_registry', 'data': {'entities': [{'entity_id': 'binary_sensor.updater', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'updater', 'platform': 'updater', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': None, 'unit_of_measurement': None, 'original_name': 'Updater', 'original_icon': None}]}}
INFO tests.common:common.py:1015 Writing data to http: {'version': 1, 'key': 'http', 'data': {'login_attempts_threshold': -1, 'server_port': 8123, 'cors_allowed_origins': ['https://cast.home-assistant.io'], 'ssl_profile': 'modern', 'ip_ban_enabled': True}}
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
=================================== FAILURES ===================================
_____________________ test_setup_hass_invalid_yaml[pyloop] _____________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
mock_enable_logging = <MagicMock name='async_enable_logging' id='140737173719120'>
mock_is_virtual_env = <MagicMock name='is_virtual_env' id='140737185099984'>
mock_mount_local_lib_path = <AsyncMock name='async_mount_local_lib_path' id='140737180020400'>
mock_ensure_config_exists = <AsyncMock name='async_ensure_config_exists' id='140737185052320'>
mock_process_ha_config_upgrade = <MagicMock name='process_ha_config_upgrade' id='140737177031152'>
loop = <_UnixSelectorEventLoop running=False closed=False debug=False>
async def test_setup_hass_invalid_yaml(
mock_enable_logging,
mock_is_virtual_env,
mock_mount_local_lib_path,
mock_ensure_config_exists,
mock_process_ha_config_upgrade,
loop,
):
"""Test it works."""
with patch(
"homeassistant.config.async_hass_config_yaml", side_effect=HomeAssistantError
):
hass = await bootstrap.async_setup_hass(
runner.RuntimeConfig(
config_dir=get_test_config_dir(),
verbose=False,
log_rotate_days=10,
log_file="",
log_no_color=False,
skip_pip=True,
safe_mode=False,
),
)
> assert "safe_mode" in hass.config.components
E AssertionError: assert 'safe_mode' in {'analytics', 'api', 'auth', 'config', 'device_automation', 'frontend', ...}
E + where {'analytics', 'api', 'auth', 'config', 'device_automation', 'frontend', ...} = <homeassistant.core.Config object at 0x7fffee356d60>.components
E + where <homeassistant.core.Config object at 0x7fffee356d60> = <homeassistant.core.HomeAssistant object at 0x7fffee356f40>.config
hass = <homeassistant.core.HomeAssistant object at 0x7fffee356f40>
loop = <_UnixSelectorEventLoop running=False closed=False debug=False>
mock_enable_logging = <MagicMock name='async_enable_logging' id='140737173719120'>
mock_ensure_config_exists = <AsyncMock name='async_ensure_config_exists' id='140737185052320'>
mock_is_virtual_env = <MagicMock name='is_virtual_env' id='140737185099984'>
mock_mount_local_lib_path = <AsyncMock name='async_mount_local_lib_path' id='140737180020400'>
mock_process_ha_config_upgrade = <MagicMock name='process_ha_config_upgrade' id='140737177031152'>
tests/test_bootstrap.py:481: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
WARNING:homeassistant.bootstrap:Skipping pip installation of required modules. This may cause issues
INFO:homeassistant.bootstrap:Config directory: /build/source/tests/testing_config
ERROR:homeassistant.bootstrap:Failed to parse configuration.yaml: . Activating safe mode
INFO:homeassistant.bootstrap:Starting in safe mode
DEBUG:homeassistant.bootstrap:Setting up ('homeassistant', 'persistent_notification')
INFO:homeassistant.loader:Loaded persistent_notification from homeassistant.components.persistent_notification
INFO:homeassistant.loader:Loaded homeassistant from homeassistant.components.homeassistant
INFO:homeassistant.setup:Setting up persistent_notification
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO:homeassistant.setup:Setup of domain persistent_notification took 0.0 seconds
INFO:homeassistant.setup:Setting up homeassistant
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO:homeassistant.setup:Setup of domain homeassistant took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=persistent_notification>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG:homeassistant.bootstrap:Home Assistant core initialized
DEBUG:homeassistant.bootstrap:Integration remaining: {}
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded safe_mode from homeassistant.components.safe_mode
INFO:homeassistant.loader:Loaded frontend from homeassistant.components.frontend
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
INFO:homeassistant.loader:Loaded auth from homeassistant.components.auth
INFO:homeassistant.loader:Loaded config from homeassistant.components.config
INFO:homeassistant.loader:Loaded device_automation from homeassistant.components.device_automation
INFO:homeassistant.loader:Loaded lovelace from homeassistant.components.lovelace
INFO:homeassistant.loader:Loaded onboarding from homeassistant.components.onboarding
INFO:homeassistant.loader:Loaded analytics from homeassistant.components.analytics
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded person from homeassistant.components.person
INFO:homeassistant.loader:Loaded image from homeassistant.components.image
INFO:homeassistant.loader:Loaded search from homeassistant.components.search
INFO:homeassistant.loader:Loaded system_log from homeassistant.components.system_log
INFO:homeassistant.loader:Loaded cloud from homeassistant.components.cloud
INFO:homeassistant.loader:Loaded webhook from homeassistant.components.webhook
INFO:homeassistant.bootstrap:Domains to be set up: {'frontend', 'person', 'api', 'webhook', 'cloud', 'safe_mode', 'lovelace', 'auth', 'analytics', 'image', 'device_automation', 'system_log', 'http', 'persistent_notification', 'config', 'onboarding', 'websocket_api', 'search'}
INFO:homeassistant.bootstrap:Setting up logging: {'system_log'}
DEBUG:homeassistant.setup:Dependency system_log will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up system_log
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO:homeassistant.setup:Setup of domain system_log took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=system_log>
INFO:homeassistant.bootstrap:Setting up stage 1: {'frontend', 'webhook', 'person', 'api', 'cloud', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG:homeassistant.setup:Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
INFO:homeassistant.setup:Setting up webhook
INFO:homeassistant.setup:Setup of domain webhook took 0.0 seconds
DEBUG:homeassistant.setup:Dependency person will wait for dependencies ['image']
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
DEBUG:homeassistant.setup:Dependency cloud will wait for dependencies ['webhook']
DEBUG:homeassistant.setup:Dependency search will wait for dependencies ['websocket_api']
INFO:homeassistant.setup:Setting up lovelace
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain lovelace took 0.0 seconds
INFO:homeassistant.setup:Setting up auth
INFO:homeassistant.setup:Setup of domain auth took 0.0 seconds
DEBUG:homeassistant.setup:Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO:homeassistant.setup:Setting up device_automation
INFO:homeassistant.setup:Setup of domain device_automation took 0.0 seconds
INFO:homeassistant.setup:Setting up config
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.setup:Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
INFO:homeassistant.setup:Setting up image
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=lovelace>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setup of domain image took 0.0 seconds
ERROR:homeassistant.setup:Setup failed for cloud: Unable to import component: No module named 'av'
INFO:homeassistant.setup:Setup of domain config took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=image>
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config>
INFO:homeassistant.setup:Setting up search
INFO:homeassistant.setup:Setup of domain search took 0.0 seconds
INFO:homeassistant.setup:Setting up analytics
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.260134+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=search>
INFO:homeassistant.setup:Setup of domain analytics took 0.0 seconds
INFO:homeassistant.setup:Setting up person
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO:homeassistant.setup:Setup of domain person took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=person>
INFO:homeassistant.setup:Setting up onboarding
INFO:homeassistant.setup:Setup of domain onboarding took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO:homeassistant.setup:Setting up frontend
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO:homeassistant.setup:Setup of domain frontend took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=frontend>
INFO:homeassistant.bootstrap:Setting up stage 2: {'persistent_notification', 'safe_mode'}
DEBUG:homeassistant.setup:Dependency safe_mode will wait for dependencies ['cloud']
ERROR:homeassistant.setup:Unable to set up dependencies of safe_mode. Setup failed for dependencies: cloud
ERROR:homeassistant.setup:Setup failed for safe_mode: Could not set up all dependencies.
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.260134+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.260134+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.bootstrap:Integration setup times: {'system_log': 0.000546, 'onboarding': 0.000582, 'person': 0.000871, 'http': 0.001403, 'frontend': 0.001516, 'device_automation': 0.001883, 'auth': 0.002475, 'lovelace': 0.003084, 'websocket_api': 0.003384, 'api': 0.004004, 'webhook': 0.004754, 'search': 0.004821, 'analytics': 0.005204, 'image': 0.009577, 'config': 0.010869}
DEBUG:homeassistant.bootstrap:Waiting for startup to wrap up
INFO:homeassistant.bootstrap:Home Assistant initialized in 0.04s
------------------------------ Captured log call -------------------------------
WARNING homeassistant.bootstrap:bootstrap.py:100 Skipping pip installation of required modules. This may cause issues
INFO homeassistant.bootstrap:bootstrap.py:108 Config directory: /build/source/tests/testing_config
ERROR homeassistant.bootstrap:bootstrap.py:120 Failed to parse configuration.yaml: . Activating safe mode
INFO homeassistant.bootstrap:bootstrap.py:160 Starting in safe mode
DEBUG homeassistant.bootstrap:bootstrap.py:210 Setting up ('homeassistant', 'persistent_notification')
INFO homeassistant.loader:loader.py:349 Loaded persistent_notification from homeassistant.components.persistent_notification
INFO homeassistant.loader:loader.py:349 Loaded homeassistant from homeassistant.components.homeassistant
INFO homeassistant.setup:setup.py:218 Setting up persistent_notification
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO homeassistant.setup:setup.py:266 Setup of domain persistent_notification took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up homeassistant
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO homeassistant.setup:setup.py:266 Setup of domain homeassistant took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=persistent_notification>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG homeassistant.bootstrap:bootstrap.py:223 Home Assistant core initialized
DEBUG homeassistant.bootstrap:bootstrap.py:399 Integration remaining: {}
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded safe_mode from homeassistant.components.safe_mode
INFO homeassistant.loader:loader.py:349 Loaded frontend from homeassistant.components.frontend
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
INFO homeassistant.loader:loader.py:349 Loaded auth from homeassistant.components.auth
INFO homeassistant.loader:loader.py:349 Loaded config from homeassistant.components.config
INFO homeassistant.loader:loader.py:349 Loaded device_automation from homeassistant.components.device_automation
INFO homeassistant.loader:loader.py:349 Loaded lovelace from homeassistant.components.lovelace
INFO homeassistant.loader:loader.py:349 Loaded onboarding from homeassistant.components.onboarding
INFO homeassistant.loader:loader.py:349 Loaded analytics from homeassistant.components.analytics
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded person from homeassistant.components.person
INFO homeassistant.loader:loader.py:349 Loaded image from homeassistant.components.image
INFO homeassistant.loader:loader.py:349 Loaded search from homeassistant.components.search
INFO homeassistant.loader:loader.py:349 Loaded system_log from homeassistant.components.system_log
INFO homeassistant.loader:loader.py:349 Loaded cloud from homeassistant.components.cloud
INFO homeassistant.loader:loader.py:349 Loaded webhook from homeassistant.components.webhook
INFO homeassistant.bootstrap:bootstrap.py:489 Domains to be set up: {'frontend', 'person', 'api', 'webhook', 'cloud', 'safe_mode', 'lovelace', 'auth', 'analytics', 'image', 'device_automation', 'system_log', 'http', 'persistent_notification', 'config', 'onboarding', 'websocket_api', 'search'}
INFO homeassistant.bootstrap:bootstrap.py:495 Setting up logging: {'system_log'}
DEBUG homeassistant.setup:setup.py:131 Dependency system_log will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up system_log
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO homeassistant.setup:setup.py:266 Setup of domain system_log took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=system_log>
INFO homeassistant.bootstrap:bootstrap.py:539 Setting up stage 1: {'frontend', 'webhook', 'person', 'api', 'cloud', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG homeassistant.setup:setup.py:131 Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up webhook
INFO homeassistant.setup:setup.py:266 Setup of domain webhook took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency person will wait for dependencies ['image']
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency cloud will wait for dependencies ['webhook']
DEBUG homeassistant.setup:setup.py:131 Dependency search will wait for dependencies ['websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up lovelace
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain lovelace took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up auth
INFO homeassistant.setup:setup.py:266 Setup of domain auth took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up device_automation
INFO homeassistant.setup:setup.py:266 Setup of domain device_automation took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up config
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.setup:setup.py:131 Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up image
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=lovelace>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:266 Setup of domain image took 0.0 seconds
ERROR homeassistant.setup:setup.py:173 Setup failed for cloud: Unable to import component: No module named 'av'
INFO homeassistant.setup:setup.py:266 Setup of domain config took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=image>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config>
INFO homeassistant.setup:setup.py:218 Setting up search
INFO homeassistant.setup:setup.py:266 Setup of domain search took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up analytics
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.260134+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=search>
INFO homeassistant.setup:setup.py:266 Setup of domain analytics took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up person
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO homeassistant.setup:setup.py:266 Setup of domain person took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=person>
INFO homeassistant.setup:setup.py:218 Setting up onboarding
INFO homeassistant.setup:setup.py:266 Setup of domain onboarding took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO homeassistant.setup:setup.py:218 Setting up frontend
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO homeassistant.setup:setup.py:266 Setup of domain frontend took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=frontend>
INFO homeassistant.bootstrap:bootstrap.py:552 Setting up stage 2: {'persistent_notification', 'safe_mode'}
DEBUG homeassistant.setup:setup.py:131 Dependency safe_mode will wait for dependencies ['cloud']
ERROR homeassistant.setup:setup.py:153 Unable to set up dependencies of safe_mode. Setup failed for dependencies: cloud
ERROR homeassistant.setup:setup.py:173 Setup failed for safe_mode: Could not set up all dependencies.
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.260134+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.260134+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.bootstrap:bootstrap.py:564 Integration setup times: {'system_log': 0.000546, 'onboarding': 0.000582, 'person': 0.000871, 'http': 0.001403, 'frontend': 0.001516, 'device_automation': 0.001883, 'auth': 0.002475, 'lovelace': 0.003084, 'websocket_api': 0.003384, 'api': 0.004004, 'webhook': 0.004754, 'search': 0.004821, 'analytics': 0.005204, 'image': 0.009577, 'config': 0.010869}
DEBUG homeassistant.bootstrap:bootstrap.py:575 Waiting for startup to wrap up
INFO homeassistant.bootstrap:bootstrap.py:242 Home Assistant initialized in 0.04s
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
______________________ test_setup_hass_safe_mode[pyloop] _______________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
mock_enable_logging = <MagicMock name='async_enable_logging' id='140737172375584'>
mock_is_virtual_env = <MagicMock name='is_virtual_env' id='140737173724752'>
mock_mount_local_lib_path = <AsyncMock name='async_mount_local_lib_path' id='140737033284672'>
mock_ensure_config_exists = <AsyncMock name='async_ensure_config_exists' id='140737033302368'>
mock_process_ha_config_upgrade = <MagicMock name='process_ha_config_upgrade' id='140737034889680'>
loop = <_UnixSelectorEventLoop running=False closed=False debug=False>
async def test_setup_hass_safe_mode(
mock_enable_logging,
mock_is_virtual_env,
mock_mount_local_lib_path,
mock_ensure_config_exists,
mock_process_ha_config_upgrade,
loop,
):
"""Test it works."""
with patch("homeassistant.components.browser.setup") as browser_setup, patch(
"homeassistant.config_entries.ConfigEntries.async_domains",
return_value=["browser"],
):
hass = await bootstrap.async_setup_hass(
runner.RuntimeConfig(
config_dir=get_test_config_dir(),
verbose=False,
log_rotate_days=10,
log_file="",
log_no_color=False,
skip_pip=True,
safe_mode=True,
),
)
> assert "safe_mode" in hass.config.components
E AssertionError: assert 'safe_mode' in {'analytics', 'api', 'auth', 'config', 'device_automation', 'frontend', ...}
E + where {'analytics', 'api', 'auth', 'config', 'device_automation', 'frontend', ...} = <homeassistant.core.Config object at 0x7fffe5ff5b80>.components
E + where <homeassistant.core.Config object at 0x7fffe5ff5b80> = <homeassistant.core.HomeAssistant object at 0x7fffed256a30>.config
browser_setup = <MagicMock name='setup' id='140737172019136'>
hass = <homeassistant.core.HomeAssistant object at 0x7fffed256a30>
loop = <_UnixSelectorEventLoop running=False closed=False debug=False>
mock_enable_logging = <MagicMock name='async_enable_logging' id='140737172375584'>
mock_ensure_config_exists = <AsyncMock name='async_ensure_config_exists' id='140737033302368'>
mock_is_virtual_env = <MagicMock name='is_virtual_env' id='140737173724752'>
mock_mount_local_lib_path = <AsyncMock name='async_mount_local_lib_path' id='140737033284672'>
mock_process_ha_config_upgrade = <MagicMock name='process_ha_config_upgrade' id='140737034889680'>
tests/test_bootstrap.py:537: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
WARNING:homeassistant.bootstrap:Skipping pip installation of required modules. This may cause issues
INFO:homeassistant.bootstrap:Config directory: /build/source/tests/testing_config
INFO:homeassistant.bootstrap:Starting in safe mode
DEBUG:homeassistant.bootstrap:Setting up ('homeassistant', 'persistent_notification')
INFO:homeassistant.loader:Loaded persistent_notification from homeassistant.components.persistent_notification
INFO:homeassistant.loader:Loaded homeassistant from homeassistant.components.homeassistant
INFO:homeassistant.setup:Setting up persistent_notification
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO:homeassistant.setup:Setup of domain persistent_notification took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=persistent_notification>
INFO:homeassistant.setup:Setting up homeassistant
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO:homeassistant.setup:Setup of domain homeassistant took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG:homeassistant.bootstrap:Home Assistant core initialized
DEBUG:homeassistant.bootstrap:Integration remaining: {}
INFO:homeassistant.loader:Loaded safe_mode from homeassistant.components.safe_mode
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded frontend from homeassistant.components.frontend
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
INFO:homeassistant.loader:Loaded auth from homeassistant.components.auth
INFO:homeassistant.loader:Loaded config from homeassistant.components.config
INFO:homeassistant.loader:Loaded device_automation from homeassistant.components.device_automation
INFO:homeassistant.loader:Loaded lovelace from homeassistant.components.lovelace
INFO:homeassistant.loader:Loaded onboarding from homeassistant.components.onboarding
INFO:homeassistant.loader:Loaded analytics from homeassistant.components.analytics
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded person from homeassistant.components.person
INFO:homeassistant.loader:Loaded image from homeassistant.components.image
INFO:homeassistant.loader:Loaded search from homeassistant.components.search
INFO:homeassistant.loader:Loaded system_log from homeassistant.components.system_log
INFO:homeassistant.loader:Loaded cloud from homeassistant.components.cloud
INFO:homeassistant.loader:Loaded webhook from homeassistant.components.webhook
INFO:homeassistant.bootstrap:Domains to be set up: {'frontend', 'person', 'api', 'webhook', 'cloud', 'safe_mode', 'lovelace', 'auth', 'analytics', 'image', 'device_automation', 'system_log', 'http', 'persistent_notification', 'config', 'onboarding', 'websocket_api', 'search'}
INFO:homeassistant.bootstrap:Setting up logging: {'system_log'}
DEBUG:homeassistant.setup:Dependency system_log will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up system_log
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO:homeassistant.setup:Setup of domain system_log took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=system_log>
INFO:homeassistant.bootstrap:Setting up stage 1: {'frontend', 'webhook', 'person', 'api', 'cloud', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG:homeassistant.setup:Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
INFO:homeassistant.setup:Setting up webhook
INFO:homeassistant.setup:Setup of domain webhook took 0.0 seconds
DEBUG:homeassistant.setup:Dependency person will wait for dependencies ['image']
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
DEBUG:homeassistant.setup:Dependency cloud will wait for dependencies ['webhook']
DEBUG:homeassistant.setup:Dependency search will wait for dependencies ['websocket_api']
INFO:homeassistant.setup:Setting up lovelace
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain lovelace took 0.0 seconds
INFO:homeassistant.setup:Setting up auth
INFO:homeassistant.setup:Setup of domain auth took 0.0 seconds
DEBUG:homeassistant.setup:Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO:homeassistant.setup:Setting up device_automation
INFO:homeassistant.setup:Setup of domain device_automation took 0.0 seconds
INFO:homeassistant.setup:Setting up config
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.setup:Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
INFO:homeassistant.setup:Setting up image
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=lovelace>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setup of domain image took 0.0 seconds
ERROR:homeassistant.setup:Setup failed for cloud: Unable to import component: No module named 'av'
INFO:homeassistant.setup:Setup of domain config took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=image>
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config>
INFO:homeassistant.setup:Setting up search
INFO:homeassistant.setup:Setup of domain search took 0.0 seconds
INFO:homeassistant.setup:Setting up analytics
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.490727+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=search>
INFO:homeassistant.setup:Setup of domain analytics took 0.0 seconds
INFO:homeassistant.setup:Setting up person
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO:homeassistant.setup:Setup of domain person took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=person>
INFO:homeassistant.setup:Setting up onboarding
INFO:homeassistant.setup:Setup of domain onboarding took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO:homeassistant.setup:Setting up frontend
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO:homeassistant.setup:Setup of domain frontend took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=frontend>
INFO:homeassistant.bootstrap:Setting up stage 2: {'persistent_notification', 'safe_mode'}
DEBUG:homeassistant.setup:Dependency safe_mode will wait for dependencies ['cloud']
ERROR:homeassistant.setup:Unable to set up dependencies of safe_mode. Setup failed for dependencies: cloud
ERROR:homeassistant.setup:Setup failed for safe_mode: Could not set up all dependencies.
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.490727+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.490727+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.bootstrap:Integration setup times: {'system_log': 0.00059, 'onboarding': 0.000645, 'http': 0.001363, 'frontend': 0.001635, 'person': 0.002046, 'device_automation': 0.00268, 'auth': 0.003668, 'lovelace': 0.004802, 'search': 0.004937, 'websocket_api': 0.004973, 'analytics': 0.005428, 'api': 0.00573, 'webhook': 0.00624, 'image': 0.009929, 'config': 0.011641}
DEBUG:homeassistant.bootstrap:Waiting for startup to wrap up
INFO:homeassistant.bootstrap:Home Assistant initialized in 0.04s
------------------------------ Captured log call -------------------------------
WARNING homeassistant.bootstrap:bootstrap.py:100 Skipping pip installation of required modules. This may cause issues
INFO homeassistant.bootstrap:bootstrap.py:108 Config directory: /build/source/tests/testing_config
INFO homeassistant.bootstrap:bootstrap.py:160 Starting in safe mode
DEBUG homeassistant.bootstrap:bootstrap.py:210 Setting up ('homeassistant', 'persistent_notification')
INFO homeassistant.loader:loader.py:349 Loaded persistent_notification from homeassistant.components.persistent_notification
INFO homeassistant.loader:loader.py:349 Loaded homeassistant from homeassistant.components.homeassistant
INFO homeassistant.setup:setup.py:218 Setting up persistent_notification
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO homeassistant.setup:setup.py:266 Setup of domain persistent_notification took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=persistent_notification>
INFO homeassistant.setup:setup.py:218 Setting up homeassistant
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO homeassistant.setup:setup.py:266 Setup of domain homeassistant took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG homeassistant.bootstrap:bootstrap.py:223 Home Assistant core initialized
DEBUG homeassistant.bootstrap:bootstrap.py:399 Integration remaining: {}
INFO homeassistant.loader:loader.py:349 Loaded safe_mode from homeassistant.components.safe_mode
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded frontend from homeassistant.components.frontend
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
INFO homeassistant.loader:loader.py:349 Loaded auth from homeassistant.components.auth
INFO homeassistant.loader:loader.py:349 Loaded config from homeassistant.components.config
INFO homeassistant.loader:loader.py:349 Loaded device_automation from homeassistant.components.device_automation
INFO homeassistant.loader:loader.py:349 Loaded lovelace from homeassistant.components.lovelace
INFO homeassistant.loader:loader.py:349 Loaded onboarding from homeassistant.components.onboarding
INFO homeassistant.loader:loader.py:349 Loaded analytics from homeassistant.components.analytics
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded person from homeassistant.components.person
INFO homeassistant.loader:loader.py:349 Loaded image from homeassistant.components.image
INFO homeassistant.loader:loader.py:349 Loaded search from homeassistant.components.search
INFO homeassistant.loader:loader.py:349 Loaded system_log from homeassistant.components.system_log
INFO homeassistant.loader:loader.py:349 Loaded cloud from homeassistant.components.cloud
INFO homeassistant.loader:loader.py:349 Loaded webhook from homeassistant.components.webhook
INFO homeassistant.bootstrap:bootstrap.py:489 Domains to be set up: {'frontend', 'person', 'api', 'webhook', 'cloud', 'safe_mode', 'lovelace', 'auth', 'analytics', 'image', 'device_automation', 'system_log', 'http', 'persistent_notification', 'config', 'onboarding', 'websocket_api', 'search'}
INFO homeassistant.bootstrap:bootstrap.py:495 Setting up logging: {'system_log'}
DEBUG homeassistant.setup:setup.py:131 Dependency system_log will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up system_log
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO homeassistant.setup:setup.py:266 Setup of domain system_log took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=system_log>
INFO homeassistant.bootstrap:bootstrap.py:539 Setting up stage 1: {'frontend', 'webhook', 'person', 'api', 'cloud', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG homeassistant.setup:setup.py:131 Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up webhook
INFO homeassistant.setup:setup.py:266 Setup of domain webhook took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency person will wait for dependencies ['image']
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency cloud will wait for dependencies ['webhook']
DEBUG homeassistant.setup:setup.py:131 Dependency search will wait for dependencies ['websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up lovelace
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain lovelace took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up auth
INFO homeassistant.setup:setup.py:266 Setup of domain auth took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up device_automation
INFO homeassistant.setup:setup.py:266 Setup of domain device_automation took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up config
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.setup:setup.py:131 Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up image
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=lovelace>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:266 Setup of domain image took 0.0 seconds
ERROR homeassistant.setup:setup.py:173 Setup failed for cloud: Unable to import component: No module named 'av'
INFO homeassistant.setup:setup.py:266 Setup of domain config took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=image>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config>
INFO homeassistant.setup:setup.py:218 Setting up search
INFO homeassistant.setup:setup.py:266 Setup of domain search took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up analytics
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.490727+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=search>
INFO homeassistant.setup:setup.py:266 Setup of domain analytics took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up person
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO homeassistant.setup:setup.py:266 Setup of domain person took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=person>
INFO homeassistant.setup:setup.py:218 Setting up onboarding
INFO homeassistant.setup:setup.py:266 Setup of domain onboarding took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO homeassistant.setup:setup.py:218 Setting up frontend
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO homeassistant.setup:setup.py:266 Setup of domain frontend took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=frontend>
INFO homeassistant.bootstrap:bootstrap.py:552 Setting up stage 2: {'persistent_notification', 'safe_mode'}
DEBUG homeassistant.setup:setup.py:131 Dependency safe_mode will wait for dependencies ['cloud']
ERROR homeassistant.setup:setup.py:153 Unable to set up dependencies of safe_mode. Setup failed for dependencies: cloud
ERROR homeassistant.setup:setup.py:173 Setup failed for safe_mode: Could not set up all dependencies.
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.490727+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.490727+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.bootstrap:bootstrap.py:564 Integration setup times: {'system_log': 0.00059, 'onboarding': 0.000645, 'http': 0.001363, 'frontend': 0.001635, 'person': 0.002046, 'device_automation': 0.00268, 'auth': 0.003668, 'lovelace': 0.004802, 'search': 0.004937, 'websocket_api': 0.004973, 'analytics': 0.005428, 'api': 0.00573, 'webhook': 0.00624, 'image': 0.009929, 'config': 0.011641}
DEBUG homeassistant.bootstrap:bootstrap.py:575 Waiting for startup to wrap up
INFO homeassistant.bootstrap:bootstrap.py:242 Home Assistant initialized in 0.04s
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_________________ test_setup_hass_invalid_core_config[pyloop] __________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
mock_enable_logging = <MagicMock name='async_enable_logging' id='140737173733776'>
mock_is_virtual_env = <MagicMock name='is_virtual_env' id='140737173928400'>
mock_mount_local_lib_path = <AsyncMock name='async_mount_local_lib_path' id='140737033282656'>
mock_ensure_config_exists = <AsyncMock name='async_ensure_config_exists' id='140737034118336'>
mock_process_ha_config_upgrade = <MagicMock name='process_ha_config_upgrade' id='140737034214080'>
loop = <_UnixSelectorEventLoop running=False closed=False debug=False>
async def test_setup_hass_invalid_core_config(
mock_enable_logging,
mock_is_virtual_env,
mock_mount_local_lib_path,
mock_ensure_config_exists,
mock_process_ha_config_upgrade,
loop,
):
"""Test it works."""
with patch(
"homeassistant.config.async_hass_config_yaml",
return_value={"homeassistant": {"non-existing": 1}},
):
hass = await bootstrap.async_setup_hass(
runner.RuntimeConfig(
config_dir=get_test_config_dir(),
verbose=False,
log_rotate_days=10,
log_file="",
log_no_color=False,
skip_pip=True,
safe_mode=False,
),
)
> assert "safe_mode" in hass.config.components
E AssertionError: assert 'safe_mode' in {'analytics', 'api', 'auth', 'config', 'device_automation', 'frontend', ...}
E + where {'analytics', 'api', 'auth', 'config', 'device_automation', 'frontend', ...} = <homeassistant.core.Config object at 0x7fffe5ff5d90>.components
E + where <homeassistant.core.Config object at 0x7fffe5ff5d90> = <homeassistant.core.HomeAssistant object at 0x7fffe5ff5760>.config
hass = <homeassistant.core.HomeAssistant object at 0x7fffe5ff5760>
loop = <_UnixSelectorEventLoop running=False closed=False debug=False>
mock_enable_logging = <MagicMock name='async_enable_logging' id='140737173733776'>
mock_ensure_config_exists = <AsyncMock name='async_ensure_config_exists' id='140737034118336'>
mock_is_virtual_env = <MagicMock name='is_virtual_env' id='140737173928400'>
mock_mount_local_lib_path = <AsyncMock name='async_mount_local_lib_path' id='140737033282656'>
mock_process_ha_config_upgrade = <MagicMock name='process_ha_config_upgrade' id='140737034214080'>
tests/test_bootstrap.py:570: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
WARNING:homeassistant.bootstrap:Skipping pip installation of required modules. This may cause issues
INFO:homeassistant.bootstrap:Config directory: /build/source/tests/testing_config
DEBUG:homeassistant.bootstrap:Setting up ('homeassistant', 'persistent_notification')
INFO:homeassistant.loader:Loaded test_package from custom_components.test_package
WARNING:homeassistant.loader:We found a custom integration test_package which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
INFO:homeassistant.loader:Loaded test from custom_components.test
WARNING:homeassistant.loader:We found a custom integration test which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
INFO:homeassistant.loader:Loaded test_embedded from custom_components.test_embedded
WARNING:homeassistant.loader:We found a custom integration test_embedded which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
INFO:homeassistant.loader:Loaded test_no_version from custom_components.test_no_version
INFO:homeassistant.loader:Loaded test_bad_version from custom_components.test_bad_version
WARNING:homeassistant.loader:We found a custom integration test_no_version which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
WARNING:homeassistant.loader:We found a custom integration test_bad_version which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
ERROR:homeassistant.loader:The custom integration 'test_no_version' does not have a valid version key (None) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
ERROR:homeassistant.loader:The custom integration 'test_bad_version' does not have a valid version key (bad) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
INFO:homeassistant.loader:Loaded persistent_notification from homeassistant.components.persistent_notification
INFO:homeassistant.loader:Loaded homeassistant from homeassistant.components.homeassistant
INFO:homeassistant.setup:Setting up persistent_notification
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO:homeassistant.setup:Setup of domain persistent_notification took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=persistent_notification>
INFO:homeassistant.setup:Setting up homeassistant
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO:homeassistant.setup:Setup of domain homeassistant took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG:homeassistant.bootstrap:Home Assistant core initialized
ERROR:homeassistant.config:Invalid config for [homeassistant]: [non-existing] is an invalid option for [homeassistant]. Check: homeassistant->non-existing. (See ?, line ?).
WARNING:homeassistant.bootstrap:Unable to set up core integrations. Activating safe mode
INFO:homeassistant.bootstrap:Starting in safe mode
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.bootstrap:Setting up ('homeassistant', 'persistent_notification')
DEBUG:homeassistant.bootstrap:Home Assistant core initialized
DEBUG:homeassistant.bootstrap:Integration remaining: {}
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded safe_mode from homeassistant.components.safe_mode
INFO:homeassistant.loader:Loaded frontend from homeassistant.components.frontend
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
INFO:homeassistant.loader:Loaded auth from homeassistant.components.auth
INFO:homeassistant.loader:Loaded config from homeassistant.components.config
INFO:homeassistant.loader:Loaded device_automation from homeassistant.components.device_automation
INFO:homeassistant.loader:Loaded lovelace from homeassistant.components.lovelace
INFO:homeassistant.loader:Loaded onboarding from homeassistant.components.onboarding
INFO:homeassistant.loader:Loaded analytics from homeassistant.components.analytics
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded person from homeassistant.components.person
INFO:homeassistant.loader:Loaded image from homeassistant.components.image
INFO:homeassistant.loader:Loaded search from homeassistant.components.search
INFO:homeassistant.loader:Loaded system_log from homeassistant.components.system_log
INFO:homeassistant.loader:Loaded cloud from homeassistant.components.cloud
INFO:homeassistant.loader:Loaded webhook from homeassistant.components.webhook
INFO:homeassistant.bootstrap:Domains to be set up: {'frontend', 'person', 'api', 'webhook', 'cloud', 'safe_mode', 'lovelace', 'auth', 'analytics', 'image', 'device_automation', 'system_log', 'http', 'persistent_notification', 'config', 'onboarding', 'websocket_api', 'search'}
INFO:homeassistant.bootstrap:Setting up logging: {'system_log'}
DEBUG:homeassistant.setup:Dependency system_log will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up system_log
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO:homeassistant.setup:Setup of domain system_log took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=system_log>
INFO:homeassistant.bootstrap:Setting up stage 1: {'frontend', 'webhook', 'person', 'api', 'cloud', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG:homeassistant.setup:Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
INFO:homeassistant.setup:Setting up webhook
INFO:homeassistant.setup:Setup of domain webhook took 0.0 seconds
DEBUG:homeassistant.setup:Dependency person will wait for dependencies ['image']
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
DEBUG:homeassistant.setup:Dependency cloud will wait for dependencies ['webhook']
DEBUG:homeassistant.setup:Dependency search will wait for dependencies ['websocket_api']
INFO:homeassistant.setup:Setting up lovelace
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain lovelace took 0.0 seconds
INFO:homeassistant.setup:Setting up auth
INFO:homeassistant.setup:Setup of domain auth took 0.0 seconds
DEBUG:homeassistant.setup:Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO:homeassistant.setup:Setting up device_automation
INFO:homeassistant.setup:Setup of domain device_automation took 0.0 seconds
INFO:homeassistant.setup:Setting up config
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.setup:Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
INFO:homeassistant.setup:Setting up image
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=lovelace>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setup of domain image took 0.0 seconds
ERROR:homeassistant.setup:Setup failed for cloud: Unable to import component: No module named 'av'
INFO:homeassistant.setup:Setup of domain config took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=image>
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config>
INFO:homeassistant.setup:Setting up search
INFO:homeassistant.setup:Setup of domain search took 0.0 seconds
INFO:homeassistant.setup:Setting up analytics
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=search>
INFO:homeassistant.setup:Setup of domain analytics took 0.0 seconds
INFO:homeassistant.setup:Setting up person
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO:homeassistant.setup:Setup of domain person took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=person>
INFO:homeassistant.setup:Setting up onboarding
INFO:homeassistant.setup:Setup of domain onboarding took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO:homeassistant.setup:Setting up frontend
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO:homeassistant.setup:Setup of domain frontend took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=frontend>
INFO:homeassistant.bootstrap:Setting up stage 2: {'persistent_notification', 'safe_mode'}
DEBUG:homeassistant.setup:Dependency safe_mode will wait for dependencies ['cloud']
ERROR:homeassistant.setup:Unable to set up dependencies of safe_mode. Setup failed for dependencies: cloud
ERROR:homeassistant.setup:Setup failed for safe_mode: Could not set up all dependencies.
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.bootstrap:Integration setup times: {'onboarding': 0.000631, 'system_log': 0.000758, 'person': 0.000879, 'http': 0.001343, 'frontend': 0.001379, 'device_automation': 0.002081, 'auth': 0.00272, 'lovelace': 0.003284, 'websocket_api': 0.003961, 'api': 0.004254, 'webhook': 0.004751, 'search': 0.004767, 'analytics': 0.005196, 'image': 0.010324, 'config': 0.011781}
DEBUG:homeassistant.bootstrap:Waiting for startup to wrap up
INFO:homeassistant.bootstrap:Home Assistant initialized in 0.04s
------------------------------ Captured log call -------------------------------
WARNING homeassistant.bootstrap:bootstrap.py:100 Skipping pip installation of required modules. This may cause issues
INFO homeassistant.bootstrap:bootstrap.py:108 Config directory: /build/source/tests/testing_config
DEBUG homeassistant.bootstrap:bootstrap.py:210 Setting up ('homeassistant', 'persistent_notification')
INFO homeassistant.loader:loader.py:349 Loaded test_package from custom_components.test_package
WARNING homeassistant.loader:loader.py:303 We found a custom integration test_package which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
INFO homeassistant.loader:loader.py:349 Loaded test from custom_components.test
WARNING homeassistant.loader:loader.py:303 We found a custom integration test which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
INFO homeassistant.loader:loader.py:349 Loaded test_embedded from custom_components.test_embedded
WARNING homeassistant.loader:loader.py:303 We found a custom integration test_embedded which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
INFO homeassistant.loader:loader.py:349 Loaded test_no_version from custom_components.test_no_version
INFO homeassistant.loader:loader.py:349 Loaded test_bad_version from custom_components.test_bad_version
WARNING homeassistant.loader:loader.py:303 We found a custom integration test_no_version which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
WARNING homeassistant.loader:loader.py:303 We found a custom integration test_bad_version which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
ERROR homeassistant.loader:loader.py:316 The custom integration 'test_no_version' does not have a valid version key (None) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
ERROR homeassistant.loader:loader.py:316 The custom integration 'test_bad_version' does not have a valid version key (bad) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
INFO homeassistant.loader:loader.py:349 Loaded persistent_notification from homeassistant.components.persistent_notification
INFO homeassistant.loader:loader.py:349 Loaded homeassistant from homeassistant.components.homeassistant
INFO homeassistant.setup:setup.py:218 Setting up persistent_notification
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO homeassistant.setup:setup.py:266 Setup of domain persistent_notification took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=persistent_notification>
INFO homeassistant.setup:setup.py:218 Setting up homeassistant
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO homeassistant.setup:setup.py:266 Setup of domain homeassistant took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG homeassistant.bootstrap:bootstrap.py:223 Home Assistant core initialized
ERROR homeassistant.config:config.py:443 Invalid config for [homeassistant]: [non-existing] is an invalid option for [homeassistant]. Check: homeassistant->non-existing. (See ?, line ?).
WARNING homeassistant.bootstrap:bootstrap.py:136 Unable to set up core integrations. Activating safe mode
INFO homeassistant.bootstrap:bootstrap.py:160 Starting in safe mode
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.bootstrap:bootstrap.py:210 Setting up ('homeassistant', 'persistent_notification')
DEBUG homeassistant.bootstrap:bootstrap.py:223 Home Assistant core initialized
DEBUG homeassistant.bootstrap:bootstrap.py:399 Integration remaining: {}
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded safe_mode from homeassistant.components.safe_mode
INFO homeassistant.loader:loader.py:349 Loaded frontend from homeassistant.components.frontend
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
INFO homeassistant.loader:loader.py:349 Loaded auth from homeassistant.components.auth
INFO homeassistant.loader:loader.py:349 Loaded config from homeassistant.components.config
INFO homeassistant.loader:loader.py:349 Loaded device_automation from homeassistant.components.device_automation
INFO homeassistant.loader:loader.py:349 Loaded lovelace from homeassistant.components.lovelace
INFO homeassistant.loader:loader.py:349 Loaded onboarding from homeassistant.components.onboarding
INFO homeassistant.loader:loader.py:349 Loaded analytics from homeassistant.components.analytics
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded person from homeassistant.components.person
INFO homeassistant.loader:loader.py:349 Loaded image from homeassistant.components.image
INFO homeassistant.loader:loader.py:349 Loaded search from homeassistant.components.search
INFO homeassistant.loader:loader.py:349 Loaded system_log from homeassistant.components.system_log
INFO homeassistant.loader:loader.py:349 Loaded cloud from homeassistant.components.cloud
INFO homeassistant.loader:loader.py:349 Loaded webhook from homeassistant.components.webhook
INFO homeassistant.bootstrap:bootstrap.py:489 Domains to be set up: {'frontend', 'person', 'api', 'webhook', 'cloud', 'safe_mode', 'lovelace', 'auth', 'analytics', 'image', 'device_automation', 'system_log', 'http', 'persistent_notification', 'config', 'onboarding', 'websocket_api', 'search'}
INFO homeassistant.bootstrap:bootstrap.py:495 Setting up logging: {'system_log'}
DEBUG homeassistant.setup:setup.py:131 Dependency system_log will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up system_log
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO homeassistant.setup:setup.py:266 Setup of domain system_log took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=system_log>
INFO homeassistant.bootstrap:bootstrap.py:539 Setting up stage 1: {'frontend', 'webhook', 'person', 'api', 'cloud', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG homeassistant.setup:setup.py:131 Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up webhook
INFO homeassistant.setup:setup.py:266 Setup of domain webhook took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency person will wait for dependencies ['image']
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency cloud will wait for dependencies ['webhook']
DEBUG homeassistant.setup:setup.py:131 Dependency search will wait for dependencies ['websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up lovelace
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain lovelace took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up auth
INFO homeassistant.setup:setup.py:266 Setup of domain auth took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up device_automation
INFO homeassistant.setup:setup.py:266 Setup of domain device_automation took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up config
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.setup:setup.py:131 Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up image
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=lovelace>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:266 Setup of domain image took 0.0 seconds
ERROR homeassistant.setup:setup.py:173 Setup failed for cloud: Unable to import component: No module named 'av'
INFO homeassistant.setup:setup.py:266 Setup of domain config took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=image>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config>
INFO homeassistant.setup:setup.py:218 Setting up search
INFO homeassistant.setup:setup.py:266 Setup of domain search took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up analytics
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=search>
INFO homeassistant.setup:setup.py:266 Setup of domain analytics took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up person
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO homeassistant.setup:setup.py:266 Setup of domain person took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=person>
INFO homeassistant.setup:setup.py:218 Setting up onboarding
INFO homeassistant.setup:setup.py:266 Setup of domain onboarding took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO homeassistant.setup:setup.py:218 Setting up frontend
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO homeassistant.setup:setup.py:266 Setup of domain frontend took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=frontend>
INFO homeassistant.bootstrap:bootstrap.py:552 Setting up stage 2: {'persistent_notification', 'safe_mode'}
DEBUG homeassistant.setup:setup.py:131 Dependency safe_mode will wait for dependencies ['cloud']
ERROR homeassistant.setup:setup.py:153 Unable to set up dependencies of safe_mode. Setup failed for dependencies: cloud
ERROR homeassistant.setup:setup.py:173 Setup failed for safe_mode: Could not set up all dependencies.
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- homeassistant
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.619455+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.bootstrap:bootstrap.py:564 Integration setup times: {'onboarding': 0.000631, 'system_log': 0.000758, 'person': 0.000879, 'http': 0.001343, 'frontend': 0.001379, 'device_automation': 0.002081, 'auth': 0.00272, 'lovelace': 0.003284, 'websocket_api': 0.003961, 'api': 0.004254, 'webhook': 0.004751, 'search': 0.004767, 'analytics': 0.005196, 'image': 0.010324, 'config': 0.011781}
DEBUG homeassistant.bootstrap:bootstrap.py:575 Waiting for startup to wrap up
INFO homeassistant.bootstrap:bootstrap.py:242 Home Assistant initialized in 0.04s
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_________________ test_setup_safe_mode_if_no_frontend[pyloop] __________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
mock_enable_logging = <MagicMock name='async_enable_logging' id='140737052021184'>
mock_is_virtual_env = <MagicMock name='is_virtual_env' id='140737172376544'>
mock_mount_local_lib_path = <AsyncMock name='async_mount_local_lib_path' id='140737033504752'>
mock_ensure_config_exists = <AsyncMock name='async_ensure_config_exists' id='140737176994384'>
mock_process_ha_config_upgrade = <MagicMock name='process_ha_config_upgrade' id='140737189821600'>
loop = <_UnixSelectorEventLoop running=False closed=False debug=False>
async def test_setup_safe_mode_if_no_frontend(
mock_enable_logging,
mock_is_virtual_env,
mock_mount_local_lib_path,
mock_ensure_config_exists,
mock_process_ha_config_upgrade,
loop,
):
"""Test we setup safe mode if frontend didn't load."""
verbose = Mock()
log_rotate_days = Mock()
log_file = Mock()
log_no_color = Mock()
with patch(
"homeassistant.config.async_hass_config_yaml",
return_value={
"homeassistant": {
"internal_url": "http://192.168.1.100:8123",
"external_url": "https://abcdef.ui.nabu.casa",
},
"map": {},
"person": {"invalid": True},
},
):
hass = await bootstrap.async_setup_hass(
runner.RuntimeConfig(
config_dir=get_test_config_dir(),
verbose=verbose,
log_rotate_days=log_rotate_days,
log_file=log_file,
log_no_color=log_no_color,
skip_pip=True,
safe_mode=False,
),
)
> assert "safe_mode" in hass.config.components
E AssertionError: assert 'safe_mode' in {'analytics', 'api', 'auth', 'config', 'device_automation', 'frontend', ...}
E + where {'analytics', 'api', 'auth', 'config', 'device_automation', 'frontend', ...} = <homeassistant.core.Config object at 0x7fffe5fefeb0>.components
E + where <homeassistant.core.Config object at 0x7fffe5fefeb0> = <homeassistant.core.HomeAssistant object at 0x7fffe4f5d9d0>.config
hass = <homeassistant.core.HomeAssistant object at 0x7fffe4f5d9d0>
log_file = <Mock id='140737033483744'>
log_no_color = <Mock id='140737033483264'>
log_rotate_days = <Mock id='140737033482736'>
loop = <_UnixSelectorEventLoop running=False closed=False debug=False>
mock_enable_logging = <MagicMock name='async_enable_logging' id='140737052021184'>
mock_ensure_config_exists = <AsyncMock name='async_ensure_config_exists' id='140737176994384'>
mock_is_virtual_env = <MagicMock name='is_virtual_env' id='140737172376544'>
mock_mount_local_lib_path = <AsyncMock name='async_mount_local_lib_path' id='140737033504752'>
mock_process_ha_config_upgrade = <MagicMock name='process_ha_config_upgrade' id='140737189821600'>
verbose = <Mock id='140737033483120'>
tests/test_bootstrap.py:610: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
WARNING:homeassistant.bootstrap:Skipping pip installation of required modules. This may cause issues
INFO:homeassistant.bootstrap:Config directory: /build/source/tests/testing_config
DEBUG:homeassistant.bootstrap:Setting up ('homeassistant', 'persistent_notification')
INFO:homeassistant.loader:Loaded test_no_version from custom_components.test_no_version
INFO:homeassistant.loader:Loaded test_package from custom_components.test_package
WARNING:homeassistant.loader:We found a custom integration test_no_version which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
WARNING:homeassistant.loader:We found a custom integration test_package which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
INFO:homeassistant.loader:Loaded test from custom_components.test
INFO:homeassistant.loader:Loaded test_embedded from custom_components.test_embedded
ERROR:homeassistant.loader:The custom integration 'test_no_version' does not have a valid version key (None) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
INFO:homeassistant.loader:Loaded test_bad_version from custom_components.test_bad_version
WARNING:homeassistant.loader:We found a custom integration test which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
WARNING:homeassistant.loader:We found a custom integration test_embedded which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
WARNING:homeassistant.loader:We found a custom integration test_bad_version which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
ERROR:homeassistant.loader:The custom integration 'test_bad_version' does not have a valid version key (bad) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
INFO:homeassistant.loader:Loaded homeassistant from homeassistant.components.homeassistant
INFO:homeassistant.loader:Loaded persistent_notification from homeassistant.components.persistent_notification
INFO:homeassistant.setup:Setting up homeassistant
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO:homeassistant.setup:Setup of domain homeassistant took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=homeassistant>
INFO:homeassistant.setup:Setting up persistent_notification
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO:homeassistant.setup:Setup of domain persistent_notification took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=persistent_notification>
DEBUG:homeassistant.bootstrap:Home Assistant core initialized
DEBUG:homeassistant.bootstrap:Integration remaining: {}
INFO:homeassistant.loader:Loaded map from homeassistant.components.map
INFO:homeassistant.loader:Loaded person from homeassistant.components.person
INFO:homeassistant.loader:Loaded image from homeassistant.components.image
INFO:homeassistant.loader:Loaded frontend from homeassistant.components.frontend
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
INFO:homeassistant.loader:Loaded auth from homeassistant.components.auth
INFO:homeassistant.loader:Loaded config from homeassistant.components.config
INFO:homeassistant.loader:Loaded device_automation from homeassistant.components.device_automation
INFO:homeassistant.loader:Loaded lovelace from homeassistant.components.lovelace
INFO:homeassistant.loader:Loaded onboarding from homeassistant.components.onboarding
INFO:homeassistant.loader:Loaded analytics from homeassistant.components.analytics
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded search from homeassistant.components.search
INFO:homeassistant.loader:Loaded system_log from homeassistant.components.system_log
INFO:homeassistant.bootstrap:Domains to be set up: {'frontend', 'person', 'api', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'map', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
INFO:homeassistant.bootstrap:Setting up logging: {'system_log'}
DEBUG:homeassistant.setup:Dependency system_log will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up system_log
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO:homeassistant.setup:Setup of domain system_log took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=system_log>
INFO:homeassistant.bootstrap:Setting up stage 1: {'frontend', 'person', 'api', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG:homeassistant.setup:Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
DEBUG:homeassistant.setup:Dependency person will wait for dependencies ['image']
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
DEBUG:homeassistant.setup:Dependency search will wait for dependencies ['websocket_api']
INFO:homeassistant.setup:Setting up lovelace
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setting up auth
INFO:homeassistant.setup:Setup of domain auth took 0.0 seconds
DEBUG:homeassistant.setup:Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO:homeassistant.setup:Setting up device_automation
INFO:homeassistant.setup:Setup of domain device_automation took 0.0 seconds
INFO:homeassistant.setup:Setting up config
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.setup:Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
INFO:homeassistant.setup:Setting up image
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setup of domain lovelace took 0.0 seconds
INFO:homeassistant.setup:Setup of domain image took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=lovelace>
INFO:homeassistant.setup:Setup of domain config took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=image>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config>
INFO:homeassistant.setup:Setting up search
INFO:homeassistant.setup:Setup of domain search took 0.0 seconds
INFO:homeassistant.setup:Setting up analytics
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=search>
INFO:homeassistant.setup:Setup of domain analytics took 0.0 seconds
ERROR:homeassistant.config:Invalid config for [person]: [invalid] is an invalid option for [person]. Check: person->person->0->invalid. (See ?, line ?). Please check the docs at https://www.home-assistant.io/integrations/person
ERROR:homeassistant.setup:Setup failed for person: Invalid config.
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
ERROR:homeassistant.setup:Unable to set up dependencies of onboarding. Setup failed for dependencies: person
ERROR:homeassistant.setup:Setup failed for onboarding: Could not set up all dependencies.
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
ERROR:homeassistant.setup:Unable to set up dependencies of frontend. Setup failed for dependencies: onboarding
ERROR:homeassistant.setup:Setup failed for frontend: Could not set up all dependencies.
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
INFO:homeassistant.bootstrap:Setting up stage 2: {'map'}
DEBUG:homeassistant.setup:Dependency map will wait for dependencies ['frontend']
ERROR:homeassistant.setup:Unable to set up dependencies of map. Setup failed for dependencies: frontend
ERROR:homeassistant.setup:Setup failed for map: Could not set up all dependencies.
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
- [map](https://www.home-assistant.io/integrations/map)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
- [map](https://www.home-assistant.io/integrations/map)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.bootstrap:Integration setup times: {'http': 0.000767, 'system_log': 0.000884, 'device_automation': 0.002397, 'auth': 0.003393, 'websocket_api': 0.004752, 'search': 0.005675, 'api': 0.005682, 'analytics': 0.006052, 'image': 0.006181, 'config': 0.00767, 'lovelace': 0.009909}
DEBUG:homeassistant.bootstrap:Waiting for startup to wrap up
INFO:homeassistant.bootstrap:Home Assistant initialized in 0.04s
WARNING:homeassistant.bootstrap:Detected that frontend did not load. Activating safe mode
INFO:homeassistant.bootstrap:Starting in safe mode
DEBUG:homeassistant.bootstrap:Setting up ('homeassistant', 'persistent_notification')
INFO:homeassistant.loader:Loaded persistent_notification from homeassistant.components.persistent_notification
INFO:homeassistant.loader:Loaded homeassistant from homeassistant.components.homeassistant
INFO:homeassistant.setup:Setting up persistent_notification
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO:homeassistant.setup:Setup of domain persistent_notification took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=persistent_notification>
INFO:homeassistant.setup:Setting up homeassistant
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO:homeassistant.setup:Setup of domain homeassistant took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG:homeassistant.bootstrap:Home Assistant core initialized
DEBUG:homeassistant.bootstrap:Integration remaining: {}
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded safe_mode from homeassistant.components.safe_mode
INFO:homeassistant.loader:Loaded frontend from homeassistant.components.frontend
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
INFO:homeassistant.loader:Loaded auth from homeassistant.components.auth
INFO:homeassistant.loader:Loaded config from homeassistant.components.config
INFO:homeassistant.loader:Loaded device_automation from homeassistant.components.device_automation
INFO:homeassistant.loader:Loaded lovelace from homeassistant.components.lovelace
INFO:homeassistant.loader:Loaded onboarding from homeassistant.components.onboarding
INFO:homeassistant.loader:Loaded analytics from homeassistant.components.analytics
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded person from homeassistant.components.person
INFO:homeassistant.loader:Loaded image from homeassistant.components.image
INFO:homeassistant.loader:Loaded search from homeassistant.components.search
INFO:homeassistant.loader:Loaded system_log from homeassistant.components.system_log
INFO:homeassistant.loader:Loaded cloud from homeassistant.components.cloud
INFO:homeassistant.loader:Loaded webhook from homeassistant.components.webhook
INFO:homeassistant.bootstrap:Domains to be set up: {'frontend', 'person', 'api', 'webhook', 'cloud', 'safe_mode', 'lovelace', 'auth', 'analytics', 'image', 'device_automation', 'system_log', 'http', 'persistent_notification', 'config', 'onboarding', 'websocket_api', 'search'}
INFO:homeassistant.bootstrap:Setting up logging: {'system_log'}
DEBUG:homeassistant.setup:Dependency system_log will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up system_log
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO:homeassistant.setup:Setup of domain system_log took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=system_log>
INFO:homeassistant.bootstrap:Setting up stage 1: {'frontend', 'webhook', 'person', 'api', 'cloud', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG:homeassistant.setup:Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
INFO:homeassistant.setup:Setting up webhook
INFO:homeassistant.setup:Setup of domain webhook took 0.0 seconds
DEBUG:homeassistant.setup:Dependency person will wait for dependencies ['image']
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
DEBUG:homeassistant.setup:Dependency cloud will wait for dependencies ['webhook']
DEBUG:homeassistant.setup:Dependency search will wait for dependencies ['websocket_api']
INFO:homeassistant.setup:Setting up lovelace
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain lovelace took 0.0 seconds
INFO:homeassistant.setup:Setting up auth
INFO:homeassistant.setup:Setup of domain auth took 0.0 seconds
DEBUG:homeassistant.setup:Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO:homeassistant.setup:Setting up device_automation
INFO:homeassistant.setup:Setup of domain device_automation took 0.0 seconds
INFO:homeassistant.setup:Setting up config
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.setup:Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
INFO:homeassistant.setup:Setting up image
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=lovelace>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setup of domain image took 0.0 seconds
ERROR:homeassistant.setup:Setup failed for cloud: Unable to import component: No module named 'av'
INFO:homeassistant.setup:Setup of domain config took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=image>
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config>
INFO:homeassistant.setup:Setting up search
INFO:homeassistant.setup:Setup of domain search took 0.0 seconds
INFO:homeassistant.setup:Setting up analytics
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.829870+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=search>
INFO:homeassistant.setup:Setup of domain analytics took 0.0 seconds
INFO:homeassistant.setup:Setting up person
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO:homeassistant.setup:Setup of domain person took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=person>
INFO:homeassistant.setup:Setting up onboarding
INFO:homeassistant.setup:Setup of domain onboarding took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO:homeassistant.setup:Setting up frontend
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO:homeassistant.setup:Setup of domain frontend took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=frontend>
INFO:homeassistant.bootstrap:Setting up stage 2: {'persistent_notification', 'safe_mode'}
DEBUG:homeassistant.setup:Dependency safe_mode will wait for dependencies ['cloud']
ERROR:homeassistant.setup:Unable to set up dependencies of safe_mode. Setup failed for dependencies: cloud
ERROR:homeassistant.setup:Setup failed for safe_mode: Could not set up all dependencies.
DEBUG:homeassistant.core:Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.829870+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.829870+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG:homeassistant.bootstrap:Integration setup times: {'system_log': 0.00059, 'onboarding': 0.000697, 'person': 0.000865, 'http': 0.001186, 'frontend': 0.001386, 'device_automation': 0.001734, 'auth': 0.002304, 'lovelace': 0.002919, 'websocket_api': 0.003289, 'api': 0.003714, 'webhook': 0.00437, 'search': 0.004737, 'analytics': 0.005094, 'image': 0.007863, 'config': 0.009066}
DEBUG:homeassistant.bootstrap:Waiting for startup to wrap up
INFO:homeassistant.bootstrap:Home Assistant initialized in 0.04s
------------------------------ Captured log call -------------------------------
WARNING homeassistant.bootstrap:bootstrap.py:100 Skipping pip installation of required modules. This may cause issues
INFO homeassistant.bootstrap:bootstrap.py:108 Config directory: /build/source/tests/testing_config
DEBUG homeassistant.bootstrap:bootstrap.py:210 Setting up ('homeassistant', 'persistent_notification')
INFO homeassistant.loader:loader.py:349 Loaded test_no_version from custom_components.test_no_version
INFO homeassistant.loader:loader.py:349 Loaded test_package from custom_components.test_package
WARNING homeassistant.loader:loader.py:303 We found a custom integration test_no_version which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
WARNING homeassistant.loader:loader.py:303 We found a custom integration test_package which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
INFO homeassistant.loader:loader.py:349 Loaded test from custom_components.test
INFO homeassistant.loader:loader.py:349 Loaded test_embedded from custom_components.test_embedded
ERROR homeassistant.loader:loader.py:316 The custom integration 'test_no_version' does not have a valid version key (None) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
INFO homeassistant.loader:loader.py:349 Loaded test_bad_version from custom_components.test_bad_version
WARNING homeassistant.loader:loader.py:303 We found a custom integration test which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
WARNING homeassistant.loader:loader.py:303 We found a custom integration test_embedded which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
WARNING homeassistant.loader:loader.py:303 We found a custom integration test_bad_version which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
ERROR homeassistant.loader:loader.py:316 The custom integration 'test_bad_version' does not have a valid version key (bad) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
INFO homeassistant.loader:loader.py:349 Loaded homeassistant from homeassistant.components.homeassistant
INFO homeassistant.loader:loader.py:349 Loaded persistent_notification from homeassistant.components.persistent_notification
INFO homeassistant.setup:setup.py:218 Setting up homeassistant
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO homeassistant.setup:setup.py:266 Setup of domain homeassistant took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=homeassistant>
INFO homeassistant.setup:setup.py:218 Setting up persistent_notification
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO homeassistant.setup:setup.py:266 Setup of domain persistent_notification took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=persistent_notification>
DEBUG homeassistant.bootstrap:bootstrap.py:223 Home Assistant core initialized
DEBUG homeassistant.bootstrap:bootstrap.py:399 Integration remaining: {}
INFO homeassistant.loader:loader.py:349 Loaded map from homeassistant.components.map
INFO homeassistant.loader:loader.py:349 Loaded person from homeassistant.components.person
INFO homeassistant.loader:loader.py:349 Loaded image from homeassistant.components.image
INFO homeassistant.loader:loader.py:349 Loaded frontend from homeassistant.components.frontend
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
INFO homeassistant.loader:loader.py:349 Loaded auth from homeassistant.components.auth
INFO homeassistant.loader:loader.py:349 Loaded config from homeassistant.components.config
INFO homeassistant.loader:loader.py:349 Loaded device_automation from homeassistant.components.device_automation
INFO homeassistant.loader:loader.py:349 Loaded lovelace from homeassistant.components.lovelace
INFO homeassistant.loader:loader.py:349 Loaded onboarding from homeassistant.components.onboarding
INFO homeassistant.loader:loader.py:349 Loaded analytics from homeassistant.components.analytics
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded search from homeassistant.components.search
INFO homeassistant.loader:loader.py:349 Loaded system_log from homeassistant.components.system_log
INFO homeassistant.bootstrap:bootstrap.py:489 Domains to be set up: {'frontend', 'person', 'api', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'map', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
INFO homeassistant.bootstrap:bootstrap.py:495 Setting up logging: {'system_log'}
DEBUG homeassistant.setup:setup.py:131 Dependency system_log will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up system_log
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO homeassistant.setup:setup.py:266 Setup of domain system_log took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=system_log>
INFO homeassistant.bootstrap:bootstrap.py:539 Setting up stage 1: {'frontend', 'person', 'api', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG homeassistant.setup:setup.py:131 Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency person will wait for dependencies ['image']
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency search will wait for dependencies ['websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up lovelace
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:218 Setting up auth
INFO homeassistant.setup:setup.py:266 Setup of domain auth took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up device_automation
INFO homeassistant.setup:setup.py:266 Setup of domain device_automation took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up config
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.setup:setup.py:131 Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up image
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:266 Setup of domain lovelace took 0.0 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain image took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=lovelace>
INFO homeassistant.setup:setup.py:266 Setup of domain config took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=image>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config>
INFO homeassistant.setup:setup.py:218 Setting up search
INFO homeassistant.setup:setup.py:266 Setup of domain search took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up analytics
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=search>
INFO homeassistant.setup:setup.py:266 Setup of domain analytics took 0.0 seconds
ERROR homeassistant.config:config.py:443 Invalid config for [person]: [invalid] is an invalid option for [person]. Check: person->person->0->invalid. (See ?, line ?). Please check the docs at https://www.home-assistant.io/integrations/person
ERROR homeassistant.setup:setup.py:173 Setup failed for person: Invalid config.
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
ERROR homeassistant.setup:setup.py:153 Unable to set up dependencies of onboarding. Setup failed for dependencies: person
ERROR homeassistant.setup:setup.py:173 Setup failed for onboarding: Could not set up all dependencies.
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
ERROR homeassistant.setup:setup.py:153 Unable to set up dependencies of frontend. Setup failed for dependencies: onboarding
ERROR homeassistant.setup:setup.py:173 Setup failed for frontend: Could not set up all dependencies.
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
INFO homeassistant.bootstrap:bootstrap.py:552 Setting up stage 2: {'map'}
DEBUG homeassistant.setup:setup.py:131 Dependency map will wait for dependencies ['frontend']
ERROR homeassistant.setup:setup.py:153 Unable to set up dependencies of map. Setup failed for dependencies: frontend
ERROR homeassistant.setup:setup.py:173 Setup failed for map: Could not set up all dependencies.
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
- [map](https://www.home-assistant.io/integrations/map)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [person](https://www.home-assistant.io/integrations/person)
- [onboarding](https://www.home-assistant.io/integrations/onboarding)
- [frontend](https://www.home-assistant.io/integrations/frontend)
- [map](https://www.home-assistant.io/integrations/map)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.793277+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.bootstrap:bootstrap.py:564 Integration setup times: {'http': 0.000767, 'system_log': 0.000884, 'device_automation': 0.002397, 'auth': 0.003393, 'websocket_api': 0.004752, 'search': 0.005675, 'api': 0.005682, 'analytics': 0.006052, 'image': 0.006181, 'config': 0.00767, 'lovelace': 0.009909}
DEBUG homeassistant.bootstrap:bootstrap.py:575 Waiting for startup to wrap up
INFO homeassistant.bootstrap:bootstrap.py:242 Home Assistant initialized in 0.04s
WARNING homeassistant.bootstrap:bootstrap.py:143 Detected that frontend did not load. Activating safe mode
INFO homeassistant.bootstrap:bootstrap.py:160 Starting in safe mode
DEBUG homeassistant.bootstrap:bootstrap.py:210 Setting up ('homeassistant', 'persistent_notification')
INFO homeassistant.loader:loader.py:349 Loaded persistent_notification from homeassistant.components.persistent_notification
INFO homeassistant.loader:loader.py:349 Loaded homeassistant from homeassistant.components.homeassistant
INFO homeassistant.setup:setup.py:218 Setting up persistent_notification
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=create>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=dismiss>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=persistent_notification, service=mark_read>
INFO homeassistant.setup:setup.py:266 Setup of domain persistent_notification took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=persistent_notification>
INFO homeassistant.setup:setup.py:218 Setting up homeassistant
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO homeassistant.setup:setup.py:266 Setup of domain homeassistant took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG homeassistant.bootstrap:bootstrap.py:223 Home Assistant core initialized
DEBUG homeassistant.bootstrap:bootstrap.py:399 Integration remaining: {}
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded safe_mode from homeassistant.components.safe_mode
INFO homeassistant.loader:loader.py:349 Loaded frontend from homeassistant.components.frontend
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
INFO homeassistant.loader:loader.py:349 Loaded auth from homeassistant.components.auth
INFO homeassistant.loader:loader.py:349 Loaded config from homeassistant.components.config
INFO homeassistant.loader:loader.py:349 Loaded device_automation from homeassistant.components.device_automation
INFO homeassistant.loader:loader.py:349 Loaded lovelace from homeassistant.components.lovelace
INFO homeassistant.loader:loader.py:349 Loaded onboarding from homeassistant.components.onboarding
INFO homeassistant.loader:loader.py:349 Loaded analytics from homeassistant.components.analytics
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded person from homeassistant.components.person
INFO homeassistant.loader:loader.py:349 Loaded image from homeassistant.components.image
INFO homeassistant.loader:loader.py:349 Loaded search from homeassistant.components.search
INFO homeassistant.loader:loader.py:349 Loaded system_log from homeassistant.components.system_log
INFO homeassistant.loader:loader.py:349 Loaded cloud from homeassistant.components.cloud
INFO homeassistant.loader:loader.py:349 Loaded webhook from homeassistant.components.webhook
INFO homeassistant.bootstrap:bootstrap.py:489 Domains to be set up: {'frontend', 'person', 'api', 'webhook', 'cloud', 'safe_mode', 'lovelace', 'auth', 'analytics', 'image', 'device_automation', 'system_log', 'http', 'persistent_notification', 'config', 'onboarding', 'websocket_api', 'search'}
INFO homeassistant.bootstrap:bootstrap.py:495 Setting up logging: {'system_log'}
DEBUG homeassistant.setup:setup.py:131 Dependency system_log will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up system_log
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO homeassistant.setup:setup.py:266 Setup of domain system_log took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=system_log>
INFO homeassistant.bootstrap:bootstrap.py:539 Setting up stage 1: {'frontend', 'webhook', 'person', 'api', 'cloud', 'search', 'lovelace', 'auth', 'analytics', 'system_log', 'device_automation', 'http', 'config', 'onboarding', 'websocket_api', 'image'}
DEBUG homeassistant.setup:setup.py:131 Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'lovelace', 'onboarding', 'search', 'websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up webhook
INFO homeassistant.setup:setup.py:266 Setup of domain webhook took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency person will wait for dependencies ['image']
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency cloud will wait for dependencies ['webhook']
DEBUG homeassistant.setup:setup.py:131 Dependency search will wait for dependencies ['websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up lovelace
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain lovelace took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up auth
INFO homeassistant.setup:setup.py:266 Setup of domain auth took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency analytics will wait for dependencies ['api', 'websocket_api']
INFO homeassistant.setup:setup.py:218 Setting up device_automation
INFO homeassistant.setup:setup.py:266 Setup of domain device_automation took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up config
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.setup:setup.py:131 Dependency onboarding will wait for dependencies ['analytics', 'auth', 'person']
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up image
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=lovelace>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=device_automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.area_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:266 Setup of domain image took 0.0 seconds
ERROR homeassistant.setup:setup.py:173 Setup failed for cloud: Unable to import component: No module named 'av'
INFO homeassistant.setup:setup.py:266 Setup of domain config took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=image>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config>
INFO homeassistant.setup:setup.py:218 Setting up search
INFO homeassistant.setup:setup.py:266 Setup of domain search took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up analytics
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=None, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.829870+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=search>
INFO homeassistant.setup:setup.py:266 Setup of domain analytics took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up person
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=analytics>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO homeassistant.setup:setup.py:266 Setup of domain person took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=person>
INFO homeassistant.setup:setup.py:218 Setting up onboarding
INFO homeassistant.setup:setup.py:266 Setup of domain onboarding took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO homeassistant.setup:setup.py:218 Setting up frontend
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO homeassistant.setup:setup.py:266 Setup of domain frontend took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=frontend>
INFO homeassistant.bootstrap:bootstrap.py:552 Setting up stage 2: {'persistent_notification', 'safe_mode'}
DEBUG homeassistant.setup:setup.py:131 Dependency safe_mode will wait for dependencies ['cloud']
ERROR homeassistant.setup:setup.py:153 Unable to set up dependencies of safe_mode. Setup failed for dependencies: cloud
ERROR homeassistant.setup:setup.py:173 Setup failed for safe_mode: Could not set up all dependencies.
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event call_service[L]: domain=persistent_notification, service=create, service_data=title=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs)., notification_id=invalid_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=persistent_notification.invalid_config, old_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.829870+00:00>, new_state=<state persistent_notification.invalid_config=notifying; title=Invalid config, friendly_name=Invalid config, message=The following integrations and platforms could not be set up:
- [cloud](https://www.home-assistant.io/integrations/cloud)
- [safe_mode](https://www.home-assistant.io/integrations/safe_mode)
Please check your config and [logs](/config/logs). @ 2021-07-13T00:36:29.829870+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event persistent_notifications_updated[L]>
DEBUG homeassistant.bootstrap:bootstrap.py:564 Integration setup times: {'system_log': 0.00059, 'onboarding': 0.000697, 'person': 0.000865, 'http': 0.001186, 'frontend': 0.001386, 'device_automation': 0.001734, 'auth': 0.002304, 'lovelace': 0.002919, 'websocket_api': 0.003289, 'api': 0.003714, 'webhook': 0.00437, 'search': 0.004737, 'analytics': 0.005094, 'image': 0.007863, 'config': 0.009066}
DEBUG homeassistant.bootstrap:bootstrap.py:575 Waiting for startup to wrap up
INFO homeassistant.bootstrap:bootstrap.py:242 Home Assistant initialized in 0.04s
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
____________________ test_webhook_create_cloudhook[pyloop] _____________________
[gw3] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed7fc3d0>
webhook_flow_conf = {}
async def test_webhook_create_cloudhook(hass, webhook_flow_conf):
"""Test only a single entry is allowed."""
> assert await setup.async_setup_component(hass, "cloud", {})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed7fc3d0>
webhook_flow_conf = {}
tests/helpers/test_config_entry_flow.py:301: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded cloud from homeassistant.components.cloud
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded webhook from homeassistant.components.webhook
DEBUG:homeassistant.setup:Dependency cloud will wait for dependencies ['http', 'webhook']
INFO:homeassistant.setup:Setting up http
DEBUG:homeassistant.setup:Dependency webhook will wait for dependencies ['http']
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up webhook
INFO:homeassistant.setup:Setup of domain webhook took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=webhook>
ERROR:homeassistant.setup:Setup failed for cloud: Unable to import component: No module named 'av'
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded cloud from homeassistant.components.cloud
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded webhook from homeassistant.components.webhook
DEBUG homeassistant.setup:setup.py:131 Dependency cloud will wait for dependencies ['http', 'webhook']
INFO homeassistant.setup:setup.py:218 Setting up http
DEBUG homeassistant.setup:setup.py:131 Dependency webhook will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up webhook
INFO homeassistant.setup:setup.py:266 Setup of domain webhook took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=webhook>
ERROR homeassistant.setup:setup.py:173 Setup failed for cloud: Unable to import component: No module named 'av'
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
______________________________ test_setup[pyloop] ______________________________
[gw5] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffee071c40>
mock_zeroconf = <MagicMock name='HaZeroconf()' id='140737154184912'>
async def test_setup(hass, mock_zeroconf):
"""Test setup."""
> assert await async_setup_component(hass, "default_config", {"foo": "bar"})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffee071c40>
mock_zeroconf = <MagicMock name='HaZeroconf()' id='140737154184912'>
tests/components/default_config/test_init.py:34: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded default_config from homeassistant.components.default_config
INFO:homeassistant.loader:Loaded automation from homeassistant.components.automation
INFO:homeassistant.loader:Loaded blueprint from homeassistant.components.blueprint
INFO:homeassistant.loader:Loaded trace from homeassistant.components.trace
INFO:homeassistant.loader:Loaded cloud from homeassistant.components.cloud
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded webhook from homeassistant.components.webhook
INFO:homeassistant.loader:Loaded counter from homeassistant.components.counter
INFO:homeassistant.loader:Loaded dhcp from homeassistant.components.dhcp
INFO:homeassistant.loader:Loaded frontend from homeassistant.components.frontend
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
INFO:homeassistant.loader:Loaded auth from homeassistant.components.auth
INFO:homeassistant.loader:Loaded config from homeassistant.components.config
INFO:homeassistant.loader:Loaded device_automation from homeassistant.components.device_automation
INFO:homeassistant.loader:Loaded lovelace from homeassistant.components.lovelace
INFO:homeassistant.loader:Loaded onboarding from homeassistant.components.onboarding
INFO:homeassistant.loader:Loaded analytics from homeassistant.components.analytics
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded person from homeassistant.components.person
INFO:homeassistant.loader:Loaded image from homeassistant.components.image
INFO:homeassistant.loader:Loaded search from homeassistant.components.search
INFO:homeassistant.loader:Loaded system_log from homeassistant.components.system_log
INFO:homeassistant.loader:Loaded history from homeassistant.components.history
INFO:homeassistant.loader:Loaded recorder from homeassistant.components.recorder
INFO:homeassistant.loader:Loaded input_boolean from homeassistant.components.input_boolean
INFO:homeassistant.loader:Loaded input_datetime from homeassistant.components.input_datetime
INFO:homeassistant.loader:Loaded input_number from homeassistant.components.input_number
INFO:homeassistant.loader:Loaded input_select from homeassistant.components.input_select
INFO:homeassistant.loader:Loaded input_text from homeassistant.components.input_text
INFO:homeassistant.loader:Loaded logbook from homeassistant.components.logbook
INFO:homeassistant.loader:Loaded map from homeassistant.components.map
INFO:homeassistant.loader:Loaded media_source from homeassistant.components.media_source
INFO:homeassistant.loader:Loaded mobile_app from homeassistant.components.mobile_app
INFO:homeassistant.loader:Loaded tag from homeassistant.components.tag
INFO:homeassistant.loader:Loaded my from homeassistant.components.my
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded scene from homeassistant.components.scene
INFO:homeassistant.loader:Loaded script from homeassistant.components.script
INFO:homeassistant.loader:Loaded ssdp from homeassistant.components.ssdp
INFO:homeassistant.loader:Loaded sun from homeassistant.components.sun
INFO:homeassistant.loader:Loaded system_health from homeassistant.components.system_health
INFO:homeassistant.loader:Loaded timer from homeassistant.components.timer
INFO:homeassistant.loader:Loaded updater from homeassistant.components.updater
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded zone from homeassistant.components.zone
DEBUG:homeassistant.setup:Dependency default_config will wait for dependencies ['automation', 'cloud', 'counter', 'dhcp', 'frontend', 'history', 'input_boolean', 'input_datetime', 'input_number', 'input_select', 'input_text', 'logbook', 'map', 'media_source', 'mobile_app', 'my', 'network', 'person', 'scene', 'script', 'ssdp', 'sun', 'system_health', 'tag', 'timer', 'updater', 'webhook', 'zeroconf', 'zone']
DEBUG:homeassistant.setup:Dependency automation will wait for dependencies ['blueprint', 'trace']
DEBUG:homeassistant.setup:Dependency cloud will wait for dependencies ['http', 'webhook']
INFO:homeassistant.setup:Setting up counter
DEBUG:matplotlib:matplotlib data path: /nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data
DEBUG:matplotlib:CONFIGDIR=/build/.config/matplotlib
DEBUG:matplotlib:matplotlib version 3.4.2
DEBUG:matplotlib:interactive is False
DEBUG:matplotlib:platform is linux
DEBUG:matplotlib:loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_warnings', '_frozen_importlib_external', '_io', 'marshal', 'posix', '_thread', '_weakref', 'time', 'zipimport', '_codecs', 'codecs', 'encodings.aliases', 'encodings', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', '_abc', 'abc', 'io', '_stat', 'stat', '_collections_abc', 'genericpath', 'posixpath', 'os.path', 'os', '_sitebuiltins', '_operator', 'operator', 'keyword', '_heapq', 'heapq', 'itertools', 'reprlib', '_collections', 'collections', '_functools', 'functools', 'sitecustomize', 'site', 'execnet._version', 'execnet.deprecated', '__future__', '_struct', 'struct', 'types', 'enum', '_sre', 'sre_constants', 'sre_parse', 'sre_compile', '_locale', 'copyreg', 're', 'token', 'tokenize', 'linecache', 'traceback', '_weakrefset', 'weakref', 'execnet.gateway_base', '_opcode', 'opcode', 'dis', 'collections.abc', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib', 'importlib.machinery', 'inspect', 'textwrap', 'execnet.gateway', 'execnet.gateway_bootstrap', 'atexit', 'threading', 'shlex', 'execnet.gateway_io', 'execnet.xspec', 'execnet.multi', '_hashlib', '_blake2', '_sha3', 'hashlib', '_queue', 'queue', 'execnet.rsync_remote', 'execnet.rsync', 'execnet', '_bootlocale', 'errno', 'py.error', 'py._error', 'py._vendored_packages', 'py._vendored_packages.apipkg.version', 'py._vendored_packages.apipkg', 'py._version', 'py.test', 'py.process', 'py.apipkg', 'py.iniconfig', 'py.path', 'py.code', 'py.builtin', 'py.io', 'py.xml', 'py.log', 'py', 'contextlib', 'typing.io', 'typing.re', 'typing', '_pytest._version', '_pytest', 'platform', 'attr._compat', 'copy', 'signal', '_posixsubprocess', 'select', 'math', 'selectors', 'subprocess', 'uuid', 'attr._config', 'attr.exceptions', 'attr.setters', 'attr._make', 'attr.converters', 'attr.filters', 'attr.validators', 'attr._cmp', 'attr._funcs', 'attr._version_info', 'attr._next_gen', 'attr', 'fnmatch', 'ntpath', 'urllib', 'urllib.parse', 'pathlib', '_pytest.outcomes', '_csv', 'csv', 'email', 'binascii', 'importlib.abc', 'importlib.util', 'zlib', '_compression', '_bz2', 'bz2', '_lzma', 'lzma', 'pwd', 'grp', 'shutil', 'zipfile', 'configparser', 'importlib.metadata', '_pytest.compat', '_pytest.warning_types', '_pytest.deprecated', 'pytest.collect', '_ast', 'ast', 'unicodedata', '_pytest._io.wcwidth', '_pytest._io.terminalwriter', '_pytest._io', 'pprint', '_pytest._io.saferepr', 'pluggy._version', 'pluggy._tracing', 'pluggy.callers', 'pluggy.hooks', 'pluggy.manager', 'pluggy', '_bisect', 'bisect', '_pytest._code.source', 'py._path', 'py._path.common', 'py._path.local', '_pytest._code.code', '_pytest._code', '_pytest.assertion.util', 'locale', 'gettext', 'argparse', '_pytest.hookspec', '_pytest.config.exceptions', 'iniconfig', '_pytest.pathlib', '_pytest.config.findpaths', '_pytest.store', '_pytest.config', '_pytest.mark.expression', '_pytest.mark.structures', '_pytest.config.argparsing', '_pytest.mark', '_pytest.nodes', '_pytest.fixtures', '_pytest.reports', 'bdb', '_pytest.timing', '_pytest.runner', '_pytest.main', '_pytest.assertion.rewrite', '_pytest.assertion.truncate', '_pytest.assertion', '_json', 'json.scanner', 'json.decoder', 'json.encoder', 'json', '_pytest.python', '_pytest.cacheprovider', '_sha512', '_random', 'random', 'tempfile', '_pytest.capture', '_pytest.debugging', '_pytest.freeze_support', '_string', 'string', 'logging', '_datetime', 'datetime', '_pytest.terminal', '_pytest.logging', '_pytest.monkeypatch', 'gc', '_pytest.tmpdir', '_pytest.pytester', 'numbers', '_decimal', 'decimal', '_pytest.python_api', '_pytest.recwarn', 'pytest', '_pytest.helpconfig', '_pytest.skipping', '_pytest.unittest', '_pytest.pastebin', '_pytest.nose', 'xml', 'xml.etree', 'xml.etree.ElementPath', 'pyexpat.errors', 'pyexpat.model', 'pyexpat', '_pytest.junitxml', '_pytest.doctest', '_pytest.setuponly', '_pytest.setupplan', '_pytest.stepwise', '_pytest.warnings', '_pytest.unraisableexception', '_pytest.threadexception', '_pytest.faulthandler', 'glob', '_pytest._argcomplete', 'toml.tz', 'toml.decoder', 'toml.encoder', 'toml', 'multidict._abc', 'multidict._multidict_base', 'multidict._multidict', 'multidict._compat', 'multidict', 'aiohttp.hdrs', 'concurrent', 'concurrent.futures._base', 'concurrent.futures', '_socket', 'socket', '_ssl', 'base64', 'ssl', 'asyncio.constants', 'asyncio.format_helpers', 'asyncio.base_futures', 'asyncio.log', 'asyncio.coroutines', '_contextvars', 'contextvars', 'asyncio.exceptions', 'asyncio.base_tasks', '_asyncio', 'asyncio.events', 'asyncio.futures', 'asyncio.protocols', 'asyncio.transports', 'asyncio.sslproto', 'asyncio.locks', 'asyncio.tasks', 'asyncio.staggered', 'asyncio.trsock', 'asyncio.base_events', 'asyncio.runners', 'asyncio.queues', 'asyncio.streams', 'asyncio.subprocess', 'asyncio.base_subprocess', 'asyncio.selector_events', 'asyncio.unix_events', 'asyncio', 'ipaddress', 'idna.package_data', 'idna.idnadata', 'idna.intranges', 'idna.core', 'idna', 'cython_runtime', 'yarl._quoting_c', 'yarl._quoting', 'yarl._url', 'yarl', 'http', 'calendar', 'email._parseaddr', 'email.base64mime', 'email.quoprimime', 'email.errors', 'quopri', 'email.encoders', 'email.charset', 'email.utils', 'html.entities', 'html', 'email.header', 'email._policybase', 'email.feedparser', 'email.parser', 'uu', 'email._encoded_words', 'email.iterators', 'email.message', 'http.client', 'mimetypes', 'socketserver', 'http.server', 'aiohttp.typedefs', 'aiohttp.http_exceptions', 'aiohttp.tcp_helpers', 'aiohttp.base_protocol', 'cgi', 'netrc', 'urllib.response', 'urllib.error', 'urllib.request', 'async_timeout', 'typing_extensions', 'aiohttp.log', 'aiohttp._helpers', 'aiohttp.helpers', 'http.cookies', 'aiohttp.abc', 'aiohttp._http_writer', 'aiohttp.http_writer', 'aiohttp.streams', '_brotli', 'brotli', '_cython_0_29_21', 'aiohttp._http_parser', 'aiohttp.http_parser', 'aiohttp._websocket', 'aiohttp.http_websocket', 'aiohttp.http', 'aiohttp.payload', 'aiohttp.client_exceptions', 'aiohttp.multipart', 'aiohttp.formdata', 'chardet.enums', 'chardet.charsetprober', 'chardet.charsetgroupprober', 'chardet.codingstatemachine', 'chardet.escsm', 'chardet.escprober', 'chardet.latin1prober', 'chardet.mbcssm', 'chardet.utf8prober', 'chardet.mbcharsetprober', 'chardet.euctwfreq', 'chardet.euckrfreq', 'chardet.gb2312freq', 'chardet.big5freq', 'chardet.jisfreq', 'chardet.chardistribution', 'chardet.jpcntx', 'chardet.sjisprober', 'chardet.eucjpprober', 'chardet.gb2312prober', 'chardet.euckrprober', 'chardet.cp949prober', 'chardet.big5prober', 'chardet.euctwprober', 'chardet.mbcsgroupprober', 'chardet.hebrewprober', 'chardet.sbcharsetprober', 'chardet.langbulgarianmodel', 'chardet.langgreekmodel', 'chardet.langhebrewmodel', 'chardet.langrussianmodel', 'chardet.langthaimodel', 'chardet.langturkishmodel', 'chardet.sbcsgroupprober', 'chardet.universaldetector', 'chardet.version', 'chardet', 'aiohttp.client_reqrep', 'aiohttp.client_ws', 'aiohttp.client_proto', 'aiohttp.locks', 'aiohttp.resolver', 'aiohttp.connector', '_compat_pickle', '_pickle', 'pickle', 'aiohttp.cookiejar', 'aiohttp._frozenlist', 'aiohttp.frozenlist', 'aiohttp.signals', 'aiohttp.tracing', 'aiohttp.client', 'aiohttp.payload_streamer', 'aiohttp', 'aiohttp.web_response', 'aiohttp.web_exceptions', 'aiohttp.web_request', 'aiohttp.web_log', 'aiohttp.web_fileresponse', 'aiohttp.web_routedef', 'aiohttp.web_urldispatcher', 'aiohttp.web_middlewares', 'aiohttp.web_protocol', 'aiohttp.web_server', 'aiohttp.web_app', 'aiohttp.web_runner', 'aiohttp.web_ws', 'aiohttp.web', 'unittest.util', 'unittest.result', 'difflib', 'unittest.case', 'unittest.async_case', 'unittest.suite', 'unittest.loader', 'unittest.signals', 'unittest.runner', 'unittest.main', 'unittest', 'unittest.mock', 'aiohttp.test_utils', 'aiohttp.pytest_plugin', 'pytest_aiohttp', 'pytest_mock._util', 'pytest_mock.plugin', 'pytest_mock', 'pkgutil', 'xml.parsers', 'xml.parsers.expat.model', 'xml.parsers.expat.errors', 'xml.parsers.expat', 'plistlib', 'pkg_resources.extern', 'pkg_resources._vendor', 'pkg_resources._vendor.appdirs', 'pkg_resources.extern.appdirs', 'pkg_resources._vendor.packaging.__about__', 'pkg_resources._vendor.packaging', 'pkg_resources.extern.packaging', 'pkg_resources.extern.packaging._structures', 'pkg_resources.extern.packaging._typing', 'pkg_resources.extern.packaging.version', 'pkg_resources.extern.packaging._compat', 'pkg_resources.extern.packaging.utils', 'pkg_resources.extern.packaging.specifiers', 'pkg_resources._vendor.pyparsing', 'pkg_resources.extern.pyparsing', 'pkg_resources.extern.packaging.markers', 'pkg_resources.extern.packaging.requirements', 'sysconfig', 'pkg_resources', 'pytest_rerunfailures', 'xdist.plugin', 'xdist._version', 'xdist', 'xdist.newhooks', 'xdist.looponfail', 'pytest_forked', 'urllib3.packages.ssl_match_hostname', 'urllib3.packages', 'urllib3.packages.six', 'urllib3.packages.six.moves', 'urllib3.packages.six.moves.http_client', 'urllib3.exceptions', 'urllib3._version', 'urllib3.contrib', 'urllib3.contrib._appengine_environ', 'urllib3.util.wait', 'urllib3.util.connection', 'urllib3.util.request', 'urllib3.util.response', 'urllib3.util.retry', 'hmac', 'urllib3.util.url', 'urllib3.util.ssltransport', 'urllib3.util.ssl_', 'urllib3.util.timeout', 'urllib3.util', 'urllib3.util.proxy', 'urllib3._collections', 'urllib3.connection', 'urllib3.fields', 'urllib3.filepost', 'urllib3.packages.six.moves.urllib', 'urllib3.packages.six.moves.urllib.parse', 'urllib3.request', 'urllib3.response', 'urllib3.util.queue', 'urllib3.connectionpool', 'urllib3.poolmanager', 'urllib3', 'requests.exceptions', 'requests.__version__', 'importlib.resources', 'certifi.core', 'certifi', 'requests.certs', 'simplejson.errors', 'simplejson.raw_json', 'simplejson.compat', 'simplejson._speedups', 'simplejson.scanner', 'simplejson.decoder', 'simplejson.encoder', 'simplejson', 'http.cookiejar', 'requests.compat', 'requests._internal_utils', 'requests.cookies', 'requests.structures', 'requests.utils', 'requests.packages.urllib3.packages.ssl_match_hostname', 'requests.packages.urllib3.packages', 'requests.packages.urllib3.packages.six', 'requests.packages.urllib3.packages.six.moves', 'requests.packages.urllib3.packages.six.moves.http_client', 'requests.packages.urllib3.exceptions', 'requests.packages.urllib3._version', 'requests.packages.urllib3.contrib', 'requests.packages.urllib3.contrib._appengine_environ', 'requests.packages.urllib3.util.wait', 'requests.packages.urllib3.util.connection', 'requests.packages.urllib3.util.request', 'requests.packages.urllib3.util.response', 'requests.packages.urllib3.util.retry', 'requests.packages.urllib3.util.url', 'requests.packages.urllib3.util.ssltransport', 'requests.packages.urllib3.util.ssl_', 'requests.packages.urllib3.util.timeout', 'requests.packages.urllib3.util', 'requests.packages.urllib3.util.proxy', 'requests.packages.urllib3._collections', 'requests.packages.urllib3.connection', 'requests.packages.urllib3.fields', 'requests.packages.urllib3.filepost', 'requests.packages.urllib3.packages.six.moves.urllib', 'requests.packages.urllib3.packages.six.moves.urllib.parse', 'requests.packages.urllib3.request', 'requests.packages.urllib3.response', 'requests.packages.urllib3.util.queue', 'requests.packages.urllib3.connectionpool', 'requests.packages.urllib3.poolmanager', 'requests.packages.urllib3', 'requests.packages.idna.package_data', 'requests.packages.idna.idnadata', 'requests.packages.idna.intranges', 'requests.packages.idna.core', 'requests.packages.idna', 'requests.packages.chardet.enums', 'requests.packages.chardet.charsetprober', 'requests.packages.chardet.charsetgroupprober', 'requests.packages.chardet.codingstatemachine', 'requests.packages.chardet.escsm', 'requests.packages.chardet.escprober', 'requests.packages.chardet.latin1prober', 'requests.packages.chardet.mbcssm', 'requests.packages.chardet.utf8prober', 'requests.packages.chardet.mbcharsetprober', 'requests.packages.chardet.euctwfreq', 'requests.packages.chardet.euckrfreq', 'requests.packages.chardet.gb2312freq', 'requests.packages.chardet.big5freq', 'requests.packages.chardet.jisfreq', 'requests.packages.chardet.chardistribution', 'requests.packages.chardet.jpcntx', 'requests.packages.chardet.sjisprober', 'requests.packages.chardet.eucjpprober', 'requests.packages.chardet.gb2312prober', 'requests.packages.chardet.euckrprober', 'requests.packages.chardet.cp949prober', 'requests.packages.chardet.big5prober', 'requests.packages.chardet.euctwprober', 'requests.packages.chardet.mbcsgroupprober', 'requests.packages.chardet.hebrewprober', 'requests.packages.chardet.sbcharsetprober', 'requests.packages.chardet.langbulgarianmodel', 'requests.packages.chardet.langgreekmodel', 'requests.packages.chardet.langhebrewmodel', 'requests.packages.chardet.langrussianmodel', 'requests.packages.chardet.langthaimodel', 'requests.packages.chardet.langturkishmodel', 'requests.packages.chardet.sbcsgroupprober', 'requests.packages.chardet.universaldetector', 'requests.packages.chardet.version', 'requests.packages.chardet', 'requests.packages', 'stringprep', 'encodings.idna', 'requests.hooks', 'requests.auth', 'requests.status_codes', 'requests.models', 'socks', 'urllib3.contrib.socks', 'requests.adapters', 'requests.sessions', 'requests.api', 'requests', 'six', 'six.moves', 'six.moves.urllib', 'requests_mock.exceptions', 'requests_mock.request', 'requests_mock.compat', 'requests_mock.response', 'requests_mock.adapter', 'requests_mock.mocker', 'requests_mock', 'requests_mock.contrib', 'distutils', 'distutils.version', 'requests_mock.contrib._pytest_plugin', 'anyio._core', 'anyio._core._compat', 'sniffio._version', 'sniffio._impl', 'sniffio', 'anyio._core._eventloop', 'anyio._core._exceptions', 'anyio.abc._resources', 'anyio._core._typedattr', 'anyio.abc._tasks', 'anyio.abc._streams', 'anyio.abc._sockets', 'anyio.abc._subprocesses', 'anyio.abc._testing', 'dataclasses', 'anyio.lowlevel', 'anyio._core._tasks', 'anyio._core._testing', 'anyio._core._synchronization', 'concurrent.futures.thread', 'anyio.from_thread', 'anyio.abc', 'anyio.to_thread', 'anyio._core._fileio', 'anyio._core._resources', 'anyio._core._signals', 'anyio.streams', 'anyio.streams.stapled', 'anyio.streams.tls', 'anyio._core._sockets', 'anyio.streams.memory', 'anyio._core._streams', 'anyio._core._subprocesses', 'anyio', 'anyio.pytest_plugin', 'tests', 'homeassistant', 'voluptuous.error', 'voluptuous.schema_builder', 'voluptuous.validators', 'voluptuous.util', 'voluptuous', 'slugify.special', 'text_unidecode', 'slugify.slugify', 'slugify', 'homeassistant.const', 'homeassistant.helpers', 'homeassistant.exceptions', 'homeassistant.helpers.frame', 'homeassistant.helpers.deprecation', 'ciso8601', 'backports', 'backports.zoneinfo._tzpath', 'backports.zoneinfo._common', 'backports.zoneinfo._version', 'backports.zoneinfo._czoneinfo', 'backports.zoneinfo', 'homeassistant.util.dt', 'homeassistant.util', 'homeassistant.util.async_', 'homeassistant.block_async_io', 'awesomeversion.exceptions', 'awesomeversion.comparehandlers', 'awesomeversion.strategy', 'awesomeversion.comparehandlers.base', 'awesomeversion.comparehandlers.container', 'awesomeversion.match', 'awesomeversion.comparehandlers.sections', 'awesomeversion.comparehandlers.devrc', 'awesomeversion.comparehandlers.modifier', 'awesomeversion.comparehandlers.simple', 'awesomeversion.handlers', 'awesomeversion.awesomeversion', 'awesomeversion', 'homeassistant.generated', 'homeassistant.generated.dhcp', 'homeassistant.generated.mqtt', 'homeassistant.generated.ssdp', 'homeassistant.generated.zeroconf', 'homeassistant.loader', 'homeassistant.util.location', 'homeassistant.util.timeout', 'homeassistant.util.distance', 'homeassistant.util.pressure', 'homeassistant.util.temperature', 'homeassistant.util.volume', 'homeassistant.util.unit_system', 'homeassistant.util.uuid', 'homeassistant.core', 'logging.handlers', 'voluptuous.humanize', 'jwt.compat', 'jwt.exceptions', 'cryptography.__about__', 'cryptography', 'cryptography.hazmat', 'cryptography.hazmat.primitives', 'cryptography.hazmat.primitives.asymmetric', 'cryptography.utils', 'cryptography.hazmat._der', 'cryptography.exceptions', 'cryptography.hazmat.backends', 'cryptography.hazmat.backends.interfaces', 'cryptography.hazmat.primitives.hashes', 'cryptography.hazmat.primitives.asymmetric.utils', 'jwt.utils', 'cryptography.hazmat.primitives._serialization', 'cryptography.hazmat.primitives.asymmetric.dsa', 'cryptography.hazmat._oid', 'cryptography.hazmat.primitives.asymmetric.ec', 'cryptography.hazmat.primitives.asymmetric.ed25519', 'cryptography.hazmat.primitives.asymmetric.ed448', 'cryptography.hazmat.primitives._asymmetric', 'cryptography.hazmat.primitives.asymmetric.rsa', 'cryptography.hazmat._types', 'cryptography.hazmat.primitives.asymmetric.dh', 'cryptography.hazmat.primitives.serialization.base', 'cryptography.hazmat.primitives._cipheralgorithm', 'cryptography.hazmat.primitives.ciphers.modes', 'cryptography.hazmat.primitives.ciphers.base', 'cryptography.hazmat.primitives.ciphers', 'cryptography.hazmat.primitives.ciphers.algorithms', '_cffi_backend', '_bcrypt.lib', '_bcrypt', 'bcrypt._bcrypt', 'bcrypt.__about__', 'bcrypt', 'cryptography.hazmat.primitives.serialization.ssh', 'cryptography.hazmat.primitives.serialization', 'cryptography.hazmat.primitives.asymmetric.padding', 'jwt.algorithms', 'jwt.api_jws', 'jwt.api_jwt', 'jwt', 'homeassistant.data_entry_flow', 'homeassistant.auth.const', 'secrets', 'homeassistant.auth.permissions.const', 'homeassistant.auth.permissions.models', 'homeassistant.auth.permissions.types', 'homeassistant.auth.permissions.util', 'homeassistant.auth.permissions.entities', 'homeassistant.auth.permissions.merge', 'homeassistant.auth.permissions', 'homeassistant.auth.models', 'homeassistant.auth.permissions.system_policies', 'homeassistant.auth.auth_store', 'homeassistant.helpers.typing', 'homeassistant.util.package', 'homeassistant.requirements', 'homeassistant.util.decorator', 'homeassistant.auth.mfa_modules', 'homeassistant.auth.providers', 'homeassistant.auth', 'voluptuous_serialize', 'jinja2.bccache', 'markupsafe._speedups', 'markupsafe', 'jinja2.utils', 'jinja2.nodes', 'jinja2.exceptions', 'jinja2.visitor', 'jinja2.idtracking', 'jinja2.optimizer', 'jinja2.compiler', 'jinja2.async_utils', 'jinja2.runtime', 'jinja2.filters', 'jinja2.tests', 'jinja2.defaults', 'jinja2._identifier', 'jinja2.lexer', 'jinja2.parser', 'jinja2.environment', 'jinja2.loaders', 'jinja2', 'jinja2.sandbox', 'homeassistant.helpers.debounce', 'homeassistant.helpers.device_registry', 'homeassistant.util.yaml.const', 'yaml.error', 'yaml.tokens', 'yaml.events', 'yaml.nodes', 'yaml.reader', 'yaml.scanner', 'yaml.parser', 'yaml.composer', 'yaml.constructor', 'yaml.resolver', 'yaml.loader', 'yaml.emitter', 'yaml.serializer', 'yaml.representer', 'yaml.dumper', 'yaml._yaml', 'yaml.cyaml', 'yaml', 'homeassistant.util.yaml.objects', 'homeassistant.util.yaml.dumper', 'homeassistant.util.yaml.input', 'homeassistant.util.yaml.loader', 'homeassistant.util.yaml', 'homeassistant.helpers.entity_registry', 'homeassistant.helpers.location', '_ctypes', 'ctypes._endian', 'ctypes', 'homeassistant.util.thread', 'homeassistant.helpers.template', 'homeassistant.helpers.script_variables', 'homeassistant.helpers.logging', 'homeassistant.helpers.config_validation', 'homeassistant.helpers.entity_values', 'homeassistant.config', 'homeassistant.helpers.ratelimit', 'homeassistant.helpers.sun', 'homeassistant.helpers.event', 'timeit', 'homeassistant.setup', 'homeassistant.config_entries', 'homeassistant.components', 'homeassistant.util.json', 'homeassistant.helpers.storage', 'homeassistant.util.ssl', 'homeassistant.components.http.const', 'homeassistant.components.http.auth', 'homeassistant.helpers.json', 'homeassistant.components.http.view', 'homeassistant.components.http.ban', 'homeassistant.components.http.cors', 'homeassistant.components.http.forwarded', 'homeassistant.components.http.request_context', 'homeassistant.components.http.security_filter', 'homeassistant.components.http.static', 'homeassistant.components.http.web_runner', 'homeassistant.components.http', 'homeassistant.helpers.area_registry', 'homeassistant.util.logging', 'homeassistant.helpers.dispatcher', 'homeassistant.bootstrap', 'homeassistant.util.executor', 'homeassistant.runner', 'homeassistant.auth.providers.homeassistant', 'homeassistant.auth.providers.legacy_api_password', 'homeassistant.components.websocket_api.const', 'homeassistant.helpers.service', 'homeassistant.helpers.entity_platform', 'homeassistant.helpers.entity', 'homeassistant.components.websocket_api.messages', 'homeassistant.components.websocket_api.connection', 'homeassistant.components.websocket_api.decorators', 'homeassistant.components.websocket_api.commands', 'homeassistant.components.websocket_api.error', 'homeassistant.components.websocket_api.auth', 'homeassistant.components.websocket_api.http', 'homeassistant.components.websocket_api', 'homeassistant.components.mqtt.const', 'homeassistant.components.mqtt.models', 'homeassistant.components.mqtt.debug_info', 'homeassistant.components.mqtt.abbreviations', 'homeassistant.components.mqtt.discovery', 'homeassistant.components.mqtt.util', 'homeassistant.components.mqtt', '_sqlite3', 'sqlite3.dbapi2', 'sqlite3', 'sqlalchemy.util.compat', 'sqlalchemy.cimmutabledict', 'sqlalchemy.util._collections', 'sqlalchemy.util._preloaded', 'greenlet._greenlet', 'greenlet', 'sqlalchemy.exc', 'sqlalchemy.util.langhelpers', 'sqlalchemy.util._concurrency_py3k', 'sqlalchemy.util.concurrency', 'sqlalchemy.util.deprecations', 'sqlalchemy.util', 'sqlalchemy.sql.roles', 'sqlalchemy.sql.visitors', 'sqlalchemy.sql.operators', 'sqlalchemy.inspection', 'sqlalchemy.sql.traversals', 'sqlalchemy.sql.base', 'sqlalchemy.sql.coercions', 'sqlalchemy.sql.type_api', 'sqlalchemy.sql.annotation', 'sqlalchemy.sql.elements', 'sqlalchemy.event.legacy', 'sqlalchemy.event.registry', 'sqlalchemy.event.attr', 'sqlalchemy.event.base', 'sqlalchemy.event.api', 'sqlalchemy.event', 'sqlalchemy.cprocessors', 'sqlalchemy.processors', 'sqlalchemy.sql.sqltypes', 'sqlalchemy.types', 'sqlalchemy.util.topological', 'sqlalchemy.sql.ddl', 'sqlalchemy.sql.selectable', 'sqlalchemy.sql.schema', 'sqlalchemy.sql.util', 'sqlalchemy.sql.dml', 'sqlalchemy.sql.crud', 'sqlalchemy.sql.functions', 'sqlalchemy.sql.compiler', 'sqlalchemy.sql.lambdas', 'sqlalchemy.sql.expression', 'sqlalchemy.sql.events', 'sqlalchemy.sql.default_comparator', 'sqlalchemy.sql.naming', 'sqlalchemy.sql', 'sqlalchemy.engine.interfaces', 'sqlalchemy.engine.util', 'sqlalchemy.log', 'sqlalchemy.engine.base', 'sqlalchemy.engine.events', 'sqlalchemy.dialects', 'sqlalchemy.engine.url', 'sqlalchemy.engine.mock', 'sqlalchemy.pool.base', 'sqlalchemy.pool.events', 'sqlalchemy.util.queue', 'sqlalchemy.pool.impl', 'sqlalchemy.pool.dbapi_proxy', 'sqlalchemy.pool', 'sqlalchemy.engine.create', 'sqlalchemy.cresultproxy', 'sqlalchemy.engine.row', 'sqlalchemy.engine.result', 'sqlalchemy.engine.cursor', 'sqlalchemy.engine.reflection', 'sqlalchemy.engine', 'sqlalchemy.schema', 'sqlalchemy.events', 'sqlalchemy.engine.characteristics', 'sqlalchemy.engine.default', 'sqlalchemy', 'sqlalchemy.orm.exc', 'sqlalchemy.orm.base', 'sqlalchemy.orm.collections', 'sqlalchemy.orm.path_registry', 'sqlalchemy.orm.interfaces', 'sqlalchemy.orm.attributes', 'sqlalchemy.orm.state', 'sqlalchemy.orm.instrumentation', 'sqlalchemy.orm.util', 'sqlalchemy.orm.strategy_options', 'sqlalchemy.future.engine', 'sqlalchemy.future', 'sqlalchemy.orm.loading', 'sqlalchemy.orm.descriptor_props', 'sqlalchemy.orm.relationships', 'sqlalchemy.orm.properties', 'sqlalchemy.orm.mapper', 'sqlalchemy.orm.context', 'sqlalchemy.orm.clsregistry', 'sqlalchemy.orm.decl_base', 'sqlalchemy.orm.decl_api', 'sqlalchemy.orm.identity', 'sqlalchemy.orm.query', 'sqlalchemy.orm.evaluator', 'sqlalchemy.orm.sync', 'sqlalchemy.orm.persistence', 'sqlalchemy.orm.unitofwork', 'sqlalchemy.orm.session', 'sqlalchemy.orm.scoping', 'sqlalchemy.orm.events', 'sqlalchemy.orm.strategies', 'sqlalchemy.orm.dynamic', 'sqlalchemy.orm.dependency', 'sqlalchemy.ext.baked', 'sqlalchemy.ext', 'sqlalchemy.orm', 'homeassistant.components.persistent_notification', 'homeassistant.helpers.entityfilter', 'homeassistant.helpers.integration_platform', 'array', 'sqlalchemy.dialects.mysql.types', 'sqlalchemy.dialects.mysql.enumerated', 'sqlalchemy.dialects.mysql.reflection', 'sqlalchemy.dialects.mysql.json', 'sqlalchemy.dialects.mysql.base', 'sqlalchemy.dialects.mysql.mysqldb', 'sqlalchemy.dialects.mysql.cymysql', 'sqlalchemy.dialects.mysql.mariadbconnector', 'sqlalchemy.dialects.mysql.mysqlconnector', 'sqlalchemy.dialects.mysql.oursql', 'sqlalchemy.dialects.mysql.pymysql', 'sqlalchemy.connectors', 'sqlalchemy.connectors.pyodbc', 'sqlalchemy.dialects.mysql.pyodbc', 'sqlalchemy.dialects.mysql.dml', 'sqlalchemy.dialects.mysql.aiomysql', 'sqlalchemy.dialects.mysql', 'sqlalchemy.ext.declarative.extensions', 'sqlalchemy.ext.declarative', 'homeassistant.components.recorder.models', 'homeassistant.components.recorder.const', 'homeassistant.components.recorder.util', 'homeassistant.components.recorder.history', 'homeassistant.components.recorder.migration', 'homeassistant.components.recorder.repack', 'homeassistant.components.recorder.purge', 'homeassistant.components.recorder.statistics', 'homeassistant.components.recorder.pool', 'homeassistant.components.recorder', 'homeassistant.util.network', 'homeassistant.helpers.network', 'homeassistant.helpers.aiohttp_client', 'homeassistant.helpers.config_entry_oauth2_flow', 'tests.ignore_uncaught_exceptions', 'homeassistant.components.device_automation.exceptions', 'homeassistant.components.device_automation', 'homeassistant.helpers.intent', 'homeassistant.helpers.singleton', 'homeassistant.helpers.restore_state', 'tests.common', 'tests.test_util', 'tests.test_util.aiohttp', 'tests.conftest', 'py._builtin', 'tests.components', 'tests.components.conftest', 'tests.components.hue', 'aiohue.clip', 'aiohue.config', 'aiohue.errors', 'aiohue.api', 'aiohue.groups', 'aiohue.lights', 'aiohue.scenes', 'aiohue.sensors', 'aiohue.bridge', 'aiohue', 'aiohue.util', 'homeassistant.components.hue.const', 'homeassistant.components.hue.errors', 'homeassistant.components.hue.helpers', 'homeassistant.helpers.discovery', 'homeassistant.helpers.entity_component', 'homeassistant.components.sensor', 'homeassistant.helpers.update_coordinator', 'homeassistant.components.hue.sensor_device', 'homeassistant.components.hue.hue_event', 'homeassistant.components.hue.sensor_base', 'homeassistant.components.hue.bridge', 'homeassistant.components.hue', 'tests.components.light', 'colorsys', 'homeassistant.util.color', 'homeassistant.components.light', 'tests.components.light.conftest', 'tests.components.hue.conftest', 'tests.components.recorder', 'tests.components.recorder.common', 'tests.components.recorder.conftest', 'tests.components.zeroconf', 'tests.components.zeroconf.conftest', 'py._log', 'syslog', 'py._log.log', 'faulthandler', 'cmd', 'codeop', 'code', 'pdb', 'py._code', 'py._code.code', 'tests.helpers', 'tests.helpers.conftest', 'tests.test_bootstrap', 'encodings.unicode_escape', 'homeassistant.helpers.check_config', 'tests.test_config', 'tests.test_config_entries', 'tests.test_core', 'tests.test_data_entry_flow', 'tests.test_exceptions', 'homeassistant.components.hue.light', 'tests.test_loader', 'homeassistant.__main__', 'tests.test_main', 'tests.test_requirements', 'tests.test_runner', 'tests.test_setup', 'tests.auth', 'tests.auth.test_auth_store', 'tests.auth.test_init', 'tests.auth.test_models', 'tests.auth.mfa_modules', 'tests.auth.mfa_modules.test_insecure_example', 'tests.auth.mfa_modules.test_totp', 'tests.auth.permissions', 'tests.auth.permissions.test_entities', 'tests.auth.permissions.test_merge', 'tests.auth.permissions.test_system_policies', 'tests.auth.permissions.test_util', 'tests.auth.providers', 'homeassistant.auth.providers.command_line', 'tests.auth.providers.test_command_line', 'tests.auth.providers.test_homeassistant', 'homeassistant.auth.providers.insecure_example', 'tests.auth.providers.test_insecure_example', 'tests.auth.providers.test_legacy_api_password', 'homeassistant.auth.providers.trusted_networks', 'tests.auth.providers.test_trusted_networks', 'tests.hassfest', 'script', 'script.hassfest', 'script.hassfest.model', 'script.hassfest.dependencies', 'tests.hassfest.test_dependencies', 'script.hassfest.manifest', 'tests.hassfest.test_version', 'tests.helpers.test_aiohttp_client', 'tests.helpers.test_area_registry', 'tests.helpers.test_check_config', 'homeassistant.helpers.collection', 'tests.helpers.test_collection', 'homeassistant.components.sun', 'homeassistant.components.blueprint.const', 'homeassistant.components.blueprint.errors', 'homeassistant.helpers.selector', 'homeassistant.components.blueprint.schemas', 'homeassistant.components.blueprint.models', 'homeassistant.components.blueprint.importer', 'homeassistant.components.blueprint.websocket_api', 'homeassistant.components.blueprint', 'homeassistant.components.zone.const', 'homeassistant.components.zone', 'homeassistant.helpers.trace', 'homeassistant.helpers.condition', 'homeassistant.components.scene', 'homeassistant.components.logger', 'homeassistant.helpers.trigger', 'homeassistant.helpers.script', 'homeassistant.components.trace.const', 'homeassistant.components.trace.websocket_api', 'homeassistant.components.trace.utils', 'homeassistant.components.trace', 'homeassistant.components.automation.const', 'homeassistant.components.automation.helpers', 'homeassistant.components.automation.config', 'homeassistant.components.automation.trace', 'homeassistant.components.automation', 'tests.helpers.test_condition', 'homeassistant.helpers.config_entry_flow', 'tests.helpers.test_config_entry_flow', 'tests.helpers.test_config_entry_oauth2_flow', 'tests.helpers.test_config_validation', 'tests.helpers.test_debounce', 'tests.helpers.test_deprecation', 'tests.helpers.test_device_registry', 'tests.helpers.test_discovery', 'tests.helpers.test_dispatcher', 'tests.helpers.test_entity', 'tests.helpers.test_entity_component', 'tests.helpers.test_entity_platform', 'tests.helpers.test_entity_registry', 'tests.helpers.test_entity_values', 'tests.helpers.test_entityfilter', 'pytz.exceptions', 'pytz.lazy', 'pytz.tzinfo', 'pytz.tzfile', 'pytz', 'astral', 'astral.sun', 'tests.helpers.test_event', 'tests.helpers.test_frame', 'httpx.__version__', 'httpx._exceptions', 'rfc3986.compat', 'rfc3986.exceptions', 'rfc3986.abnf_regexp', 'rfc3986.misc', 'rfc3986.normalizers', 'rfc3986.validators', 'rfc3986._mixin', 'rfc3986.uri', 'rfc3986.iri', 'rfc3986.parseresult', 'rfc3986.api', 'rfc3986', 'httpx._transports', 'httpx._transports.base', 'httpx._types', 'httpx._utils', 'httpx._multipart', 'httpx._content', 'httpx._decoders', 'httpx._status_codes', 'httpx._models', 'httpx._auth', 'httpx._compat', 'httpx._config', 'httpx._transports.asgi', 'httpcore._async', 'httpcore._types', 'httpcore._async.base', 'httpcore._backends', 'httpcore._backends.base', 'httpcore._exceptions', 'httpcore._utils', 'httpcore._backends.sync', 'httpcore._backends.auto', 'httpcore._threadlock', 'httpcore._async.http', 'h11._abnf', 'h11._util', 'h11._headers', 'h11._events', 'h11._state', 'h11._readers', 'h11._receivebuffer', 'h11._writers', 'h11._connection', 'h11._version', 'h11', 'httpcore._sync', 'httpcore._sync.base', 'httpcore._bytestreams', 'httpcore._async.http11', 'httpcore._async.connection', 'httpcore._async.connection_pool', 'httpcore._async.http_proxy', 'httpcore._sync.http', 'httpcore._sync.http11', 'httpcore._sync.connection', 'httpcore._sync.connection_pool', 'httpcore._sync.http_proxy', 'httpcore', 'httpx._transports.default', 'httpx._transports.wsgi', 'httpx._client', 'httpx._api', 'httpx._transports.mock', 'httpx', 'homeassistant.helpers.httpx_client', 'tests.helpers.test_httpx_client', 'tests.helpers.test_icon', 'tests.helpers.test_init', 'tests.helpers.test_instance_id', 'tests.helpers.test_integration_platform', 'tests.helpers.test_intent', 'tests.helpers.test_json', 'tests.helpers.test_location', 'fcntl', 'atomicwrites', 'jose.exceptions', 'jose', 'cryptography.hazmat.bindings', 'cryptography.hazmat.bindings.openssl', '_openssl.lib', '_openssl', 'cryptography.hazmat.bindings._openssl', 'cryptography.hazmat.bindings.openssl._conditional', 'cryptography.hazmat.bindings.openssl.binding', 'cryptography.hazmat.primitives.hmac', 'cryptography.x509.certificate_transparency', 'cryptography.hazmat.primitives.constant_time', 'cryptography.x509.oid', 'cryptography.x509.name', 'cryptography.x509.general_name', 'cryptography.x509.extensions', 'cryptography.x509.base', 'cryptography.x509', 'cryptography.hazmat.backends.openssl.aead', 'cryptography.hazmat.backends.openssl.ciphers', 'cryptography.hazmat.backends.openssl.cmac', 'cryptography.hazmat.backends.openssl.decode_asn1', 'cryptography.hazmat.backends.openssl.dh', 'cryptography.hazmat.backends.openssl.utils', 'cryptography.hazmat.backends.openssl.dsa', 'cryptography.hazmat.backends.openssl.ec', 'cryptography.hazmat.backends.openssl.ed25519', 'cryptography.hazmat.backends.openssl.ed448', 'cryptography.hazmat.backends.openssl.encode_asn1', 'cryptography.hazmat.backends.openssl.hashes', 'cryptography.hazmat.backends.openssl.hmac', 'cryptography.hazmat.backends.openssl.rsa', 'cryptography.hazmat.backends.openssl.x509', 'cryptography.x509.ocsp', 'cryptography.hazmat.backends.openssl.ocsp', 'cryptography.hazmat.backends.openssl.poly1305', 'cryptography.hazmat.primitives.asymmetric.x25519', 'cryptography.hazmat.backends.openssl.x25519', 'cryptography.hazmat.primitives.asymmetric.x448', 'cryptography.hazmat.backends.openssl.x448', 'cryptography.hazmat.primitives.kdf', 'cryptography.hazmat.primitives.kdf.scrypt', 'cryptography.hazmat.primitives.serialization.pkcs7', 'cryptography.hazmat.backends.openssl.backend', 'cryptography.hazmat.backends.openssl', 'cryptography.hazmat.primitives.ciphers.aead', 'cryptography.hazmat.primitives.keywrap', '_padding.lib', '_padding', 'cryptography.hazmat.bindings._padding', 'cryptography.hazmat.primitives.padding', 'jose.constants', 'jose.utils', 'jose.backends.base', 'jose.backends.cryptography_backend', 'jose.backends', 'jose.jwk', 'jose.jws', 'jose.jwt', 'botocore', 'botocore.vendored', 'botocore.vendored.six', 'botocore.vendored.requests.packages.urllib3.exceptions', 'botocore.vendored.requests.packages.urllib3', 'botocore.vendored.requests.packages', 'botocore.vendored.requests.exceptions', 'botocore.vendored.requests', 'botocore.exceptions', 'dateutil._version', 'dateutil', 'dateutil.tz._common', 'dateutil.tz._factories', 'dateutil.tz.tz', 'dateutil.tz', 'botocore.vendored.six.moves', 'xml.etree.cElementTree', 'botocore.compat', 'botocore.configloader', 'termios', 'getpass', 'dateutil._common', 'dateutil.relativedelta', 'dateutil.parser._parser', 'dateutil.parser.isoparser', 'dateutil.parser', 'OpenSSL._util', 'OpenSSL.crypto', 'OpenSSL.SSL', 'OpenSSL.version', 'OpenSSL', 'urllib3.packages.backports', 'urllib3.packages.backports.makefile', 'urllib3.contrib.pyopenssl', 'botocore.vendored.six.moves.urllib_parse', 'botocore.httpsession', 'botocore.vendored.six.moves.urllib', 'botocore.vendored.six.moves.urllib.request', 'botocore.utils', 'botocore.awsrequest', 'botocore.hooks', 'botocore.history', 'botocore.eventstream', 'botocore.parsers', 'botocore.response', 'botocore.endpoint', 'botocore.config', 'botocore.credentials', 'jmespath.compat', 'jmespath.exceptions', 'jmespath.lexer', 'jmespath.ast', 'jmespath.functions', 'jmespath.visitor', 'jmespath.parser', 'jmespath', 'botocore.docs.utils', 'botocore.docs.shape', 'botocore.docs.params', 'botocore.docs.example', 'botocore.docs.method', 'botocore.docs.sharedexample', 'botocore.docs.client', 'botocore.docs.waiter', 'botocore.docs.paginator', 'botocore.docs.bcdoc', '_markupbase', 'html.parser', 'botocore.docs.bcdoc.docstringparser', 'botocore.docs.bcdoc.style', 'botocore.docs.bcdoc.restdoc', 'botocore.docs.service', 'botocore.docs', 'botocore.docs.docstring', 'botocore.waiter', 'botocore.validate', 'botocore.serialize', 'botocore.auth', 'botocore.signers', 'botocore.args', 'botocore.model', 'botocore.paginate', 'botocore.discovery', 'botocore.retries', 'botocore.retries.quota', 'botocore.retries.base', 'botocore.retries.special', 'botocore.retries.standard', 'botocore.retries.bucket', 'botocore.retries.throttling', 'botocore.retries.adaptive', 'botocore.client', 'botocore.configprovider', 'botocore.errorfactory', 'botocore.retryhandler', 'botocore.translate', 'botocore.handlers', 'botocore.loaders', 'botocore.regions', 'botocore.monitoring', 'botocore.session', 'boto3.utils', 'boto3.exceptions', 'boto3.resources', 'boto3.resources.params', 'boto3.resources.response', 'boto3.resources.model', 'boto3.docs.client', 'boto3.docs.base', 'boto3.docs.method', 'boto3.docs.utils', 'boto3.docs.action', 'boto3.docs.waiter', 'boto3.docs.collection', 'boto3.docs.subresource', 'boto3.docs.attr', 'boto3.docs.resource', 'boto3.docs.service', 'boto3.docs', 'boto3.docs.docstring', 'boto3.resources.action', 'boto3.resources.base', 'boto3.resources.collection', 'boto3.resources.factory', 'boto3.session', 'boto3.compat', 'boto3', 'envs.exceptions', 'envs', 'pycognito.exceptions', 'pycognito.aws_srp', 'pycognito', 'hass_nabucasa.const', 'hass_nabucasa.auth', 'hass_nabucasa.client', 'hass_nabucasa.cloud_api', 'hass_nabucasa.cloudhooks', 'hass_nabucasa.utils', 'hass_nabucasa.iot_base', 'hass_nabucasa.google_report_state', 'hass_nabucasa.iot', 'snitun', 'snitun.exceptions', 'snitun.utils', 'snitun.utils.aes', 'snitun.client', 'snitun.multiplexer', 'snitun.utils.ipaddress', 'snitun.multiplexer.message', 'snitun.multiplexer.channel', 'snitun.multiplexer.crypto', 'snitun.multiplexer.core', 'snitun.client.connector', 'snitun.client.client_peer', 'snitun.utils.aiohttp_client', 'josepy.b64', 'josepy.errors', 'josepy.util', 'josepy.interfaces', 'josepy.json_util', 'josepy.jwk', 'josepy.jwa', 'josepy.jws', 'josepy', 'acme.jose.b64', 'acme.jose.errors', 'acme.jose.util', 'acme.jose.interfaces', 'acme.jose.json_util', 'acme.jose.jwk', 'acme.jose.jwa', 'acme.jose.jws', 'acme.jose', 'acme', 'acme.errors', 'acme.crypto_util', 'pyrfc3339.utils', 'pyrfc3339.generator', 'pyrfc3339.parser', 'pyrfc3339', 'acme.fields', 'acme.mixins', 'acme.challenges', 'urllib3.contrib.appengine', 'requests.packages.urllib3.packages.backports', 'requests.packages.urllib3.packages.backports.makefile', 'requests.packages.urllib3.contrib.pyopenssl', 'requests_toolbelt._compat', 'requests_toolbelt.adapters.ssl', 'requests_toolbelt.adapters.source', 'requests_toolbelt.adapters', 'requests_toolbelt.auth', 'requests_toolbelt.auth._digest_auth_compat', 'requests_toolbelt.auth.http_proxy_digest', 'requests_toolbelt.auth.guess', 'requests_toolbelt.multipart.encoder', 'requests_toolbelt.multipart.decoder', 'requests_toolbelt.multipart', 'requests_toolbelt.streaming_iterator', 'requests_toolbelt.utils', 'requests_toolbelt.utils.user_agent', 'requests_toolbelt', 'acme.jws', 'acme.util', 'acme.messages', 'acme.client', 'hass_nabucasa.acme', 'hass_nabucasa.remote', 'hass_nabucasa.voice', 'hass_nabucasa', 'homeassistant.helpers.temperature', 'homeassistant.components.climate.const', 'homeassistant.components.climate', 'homeassistant.components.alexa.const', 'homeassistant.components.alexa.flash_briefings', 'homeassistant.components.alexa.intent', 'homeassistant.components.alexa.auth', 'homeassistant.helpers.significant_change', 'homeassistant.components.alarm_control_panel.const', 'homeassistant.components.alarm_control_panel', 'homeassistant.components.notify', 'homeassistant.components.alert', 'homeassistant.components.binary_sensor', 'homeassistant.components.media_player.const', 'homeassistant.components.media_player.errors', 'homeassistant.components.media_player', 'homeassistant.components.stream.const', 'homeassistant.components.stream.core', 'homeassistant.components.stream.fmp4utils', 'homeassistant.components.stream.hls', 'tests.helpers.test_ratelimit', 'homeassistant.helpers.recorder', 'tests.helpers.test_recorder', 'homeassistant.helpers.reload', 'tests.helpers.test_reload', 'tests.helpers.test_restore_state', 'tests.helpers.test_script', 'tests.helpers.test_script_variables', 'tests.helpers.test_selector', 'tests.helpers.test_service', 'tests.helpers.test_significant_change', 'tests.helpers.test_singleton', 'homeassistant.helpers.start', 'tests.helpers.test_start', 'homeassistant.helpers.state', 'tests.helpers.test_state', 'tests.helpers.test_storage', 'tests.helpers.test_storage_remove', 'tests.helpers.test_sun', 'tests.helpers.test_system_info', 'tests.helpers.test_temperature', 'homeassistant.components.group', 'tests.helpers.test_template', 'homeassistant.generated.config_flows', 'homeassistant.helpers.translation', 'tests.helpers.test_translation', 'tests.helpers.test_trigger', 'tests.helpers.test_update_coordinator', 'tests.scripts', 'homeassistant.scripts', 'homeassistant.scripts.auth', 'tests.scripts.test_auth', 'homeassistant.scripts.check_config', 'tests.scripts.test_check_config', 'tests.scripts.test_init', 'tests.test_util.test_aiohttp', 'tests.util', 'homeassistant.util.aiohttp', 'tests.util.test_aiohttp', 'tests.util.test_async', 'tests.util.test_color', 'tests.util.test_distance', 'tests.util.test_dt', 'tests.util.test_executor', 'tests.util.test_init', 'tests.util.test_json', 'tests.util.test_location', 'tests.util.test_logging', 'tests.util.test_network', 'tests.util.test_package', 'homeassistant.util.percentage', 'tests.util.test_percentage', 'tests.util.test_pressure', 'homeassistant.util.process', 'tests.util.test_process', 'ruamel', 'ruamel.yaml.compat', 'ruamel.yaml.error', 'ruamel.yaml.util', 'ruamel.yaml.reader', 'ruamel.yaml.tokens', 'ruamel.yaml.scanner', 'ruamel.yaml.events', 'ruamel.yaml.anchor', 'ruamel.yaml.scalarstring', 'ruamel.yaml.comments', 'ruamel.yaml.parser', 'ruamel.yaml.nodes', 'ruamel.yaml.composer', 'ruamel.yaml.scalarint', 'ruamel.yaml.scalarfloat', 'ruamel.yaml.scalarbool', 'ruamel.yaml.timestamp', 'ruamel.yaml.constructor', 'ruamel.yaml.emitter', 'ruamel.yaml.serializer', 'ruamel.yaml.representer', '_ruamel_yaml', 'ruamel.yaml.resolver', 'ruamel.yaml.cyaml', 'ruamel.yaml.loader', 'ruamel.yaml.dumper', 'ruamel.yaml.main', 'ruamel.yaml', 'homeassistant.util.ruamel_yaml', 'tests.util.test_ruamel_yaml', 'tests.util.test_temperature', 'tests.util.test_thread', 'tests.util.test_timeout', 'tests.util.test_unit_system', 'tests.util.test_uuid', 'tests.util.test_volume', 'tests.util.yaml', 'tests.util.yaml.test_init', 'tests.util.yaml.test_input', 'tests.components.default_config', 'tests.components.blueprint', 'tests.components.blueprint.conftest', 'tests.components.default_config.test_init', 'tests.components.hue.test_bridge', 'aiohue.discovery', 'async_upnp_client.utils', 'async_upnp_client.ssdp', 'async_upnp_client.advertisement', 'xml.sax.handler', 'xml.sax._exceptions', 'xml.sax.xmlreader', 'xml.sax', 'xml.sax.saxutils', 'defusedxml.common', 'defusedxml', '_elementtree', 'xml.etree.ElementTree', 'defusedxml.ElementTree', 'async_upnp_client.const', 'async_upnp_client.exceptions', 'async_upnp_client.client', 'async_upnp_client.client_factory', 'async_upnp_client.event_handler', 'async_upnp_client', 'async_upnp_client.search', 'homeassistant.components.network.const', 'homeassistant.components.network.models', 'ifaddr._shared', 'ctypes.util', 'ifaddr._posix', 'ifaddr', 'homeassistant.components.network.util', 'homeassistant.components.network.network', 'homeassistant.components.network', 'homeassistant.components.ssdp.util', 'homeassistant.components.ssdp.descriptions', 'homeassistant.components.ssdp.flow', 'homeassistant.components.ssdp', 'homeassistant.components.hue.config_flow', 'tests.components.hue.test_config_flow', 'homeassistant.components.homeassistant', 'homeassistant.components.homeassistant.triggers', 'homeassistant.components.homeassistant.triggers.event', 'homeassistant.components.hue.device_trigger', 'tests.components.hue.test_sensor_base', 'tests.components.hue.test_device_trigger', 'tests.components.hue.test_init', 'tests.components.hue.test_init_multiple_bridges', 'tests.components.hue.test_light', 'tests.components.recorder.test_history', 'tests.components.recorder.test_init', 'tests.components.recorder.models_original', 'tests.components.recorder.test_migrate', 'tests.components.recorder.test_models', 'tests.components.recorder.test_pool', 'tests.components.recorder.test_purge', 'tests.components.recorder.test_statistics', 'tests.components.recorder.test_util', 'zeroconf._exceptions', 'zeroconf._utils', 'zeroconf._logger', 'zeroconf.const', 'zeroconf._utils.net', 'zeroconf._utils.time', 'zeroconf._dns', 'zeroconf._cache', 'zeroconf._history', 'zeroconf._utils.struct', 'zeroconf._protocol', 'zeroconf._services', 'zeroconf._updates', 'zeroconf._utils.asyncio', 'zeroconf._utils.name', 'zeroconf._services.info', 'zeroconf._services.registry', 'zeroconf._handlers', 'zeroconf._services.browser', 'zeroconf._core', 'zeroconf._services.types', 'zeroconf', 'zeroconf.asyncio', 'homeassistant.components.zeroconf.models', 'homeassistant.components.zeroconf.usage', 'homeassistant.components.zeroconf', 'tests.components.zeroconf.test_init', 'tests.components.zeroconf.test_usage', 'custom_components', 'custom_components.test_package.const', 'custom_components.test_package', 'custom_components.test', 'custom_components.test.light', 'custom_components.test_embedded', 'custom_components.test_embedded.switch', 'homeassistant.components.switch', 'aiohttp_cors.__about__', 'aiohttp_cors.resource_options', 'aiohttp_cors.abc', 'aiohttp_cors.preflight_handler', 'aiohttp_cors.mixin', 'aiohttp_cors.urldispatcher_router_adapter', 'aiohttp_cors.cors_config', 'aiohttp_cors', 'astral.moon', 'astral.location', 'homeassistant.components.input_datetime', 'homeassistant.components.input_text', 'homeassistant.components.input_select', 'jinja2.debug', 'homeassistant.components.input_number', 'homeassistant.components.homeassistant.trigger', 'homeassistant.components.updater', 'homeassistant.components.counter', 'homeassistant.components.dhcp', 'dns.version', 'dns', 'dns.exception', 'dns._immutable_ctx', 'dns.immutable', 'dns.name', 'dns.wire', 'dns.enum', 'dns.ipv4', 'dns.ipv6', 'dns.inet', 'dns.rdataclass', 'dns.rdatatype', 'dns.ttl', 'dns.tokenizer', 'dns.rdata', 'dns.edns', 'dns.flags', 'dns.opcode', 'dns.entropy', 'dns.rcode', 'dns.set', 'dns.rdataset', 'dns.tsig', 'dns.renderer', 'dns.rrset', 'dns.rdtypes', 'dns.rdtypes.ANY', 'dns.rdtypes.ANY.OPT', 'dns.rdtypes.ANY.TSIG', 'dns.message', 'pr2modules', 'multiprocessing.process', 'multiprocessing.reduction', 'multiprocessing.context', '__mp_main__', 'multiprocessing', 'pr2modules.config', 'pr2modules.config.version', 'pr2modules.config.log', 'pr2modules.common', 'pr2modules.netlink.exceptions', 'pr2modules.netlink', 'pr2modules.netlink.nlsocket', 'pr2modules.netlink.generic', 'pr2modules.netlink.event', 'pr2modules.netlink.event.acpi_event', 'pr2modules.netlink.event.dquot', 'pr2modules.netlink.devlink', 'pr2modules.netlink.diag', 'pr2modules.netlink.rtnl', 'pr2modules.netlink.rtnl.iw_event', 'pr2modules.netlink.rtnl.ifinfmsg.plugins', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.bond', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.geneve', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.gtp', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.ipvlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.team', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.tuntap', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.tun', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vrf', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vti', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vti6', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vxlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.xfrm', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.ipoib', 'pr2modules.netlink.rtnl.ifinfmsg', 'pr2modules.netlink.rtnl.rtmsg', 'pr2modules.netlink.rtnl.fibmsg', 'pr2modules.netlink.rtnl.req', 'pr2modules.netlink.ipq', 'pr2modules.proxy', 'pr2modules.protocols', 'pr2modules.netlink.rtnl.tcmsg.common', 'pr2modules.netlink.rtnl.tcmsg.act_police', 'pr2modules.netlink.rtnl.tcmsg.act_gact', 'pr2modules.netlink.rtnl.tcmsg.act_bpf', 'pr2modules.netlink.rtnl.tcmsg.act_mirred', 'pr2modules.netlink.rtnl.tcmsg.act_connmark', 'pr2modules.netlink.rtnl.tcmsg.act_vlan', 'pr2modules.netlink.rtnl.tcmsg.act_skbedit', 'pr2modules.netlink.rtnl.tcmsg.common_act', 'pr2modules.netlink.rtnl.tcmsg.cls_fw', 'pr2modules.netlink.rtnl.tcmsg.cls_u32', 'pr2modules.netlink.rtnl.tcmsg.cls_matchall', 'pr2modules.netlink.rtnl.tcmsg.em_cmp', 'pr2modules.netlink.rtnl.tcmsg.em_ipset', 'pr2modules.netlink.rtnl.tcmsg.em_meta', 'pr2modules.netlink.rtnl.tcmsg.common_ematch', 'pr2modules.netlink.rtnl.tcmsg.cls_basic', 'pr2modules.netlink.rtnl.tcmsg.cls_flow', 'pr2modules.netlink.rtnl.tcmsg.sched_bpf', 'pr2modules.netlink.rtnl.tcmsg.sched_cake', 'pr2modules.netlink.rtnl.tcmsg.sched_choke', 'pr2modules.netlink.rtnl.tcmsg.sched_clsact', 'pr2modules.netlink.rtnl.tcmsg.sched_codel', 'pr2modules.netlink.rtnl.tcmsg.sched_drr', 'pr2modules.netlink.rtnl.tcmsg.sched_fq_codel', 'pr2modules.netlink.rtnl.tcmsg.sched_hfsc', 'pr2modules.netlink.rtnl.tcmsg.sched_htb', 'pr2modules.netlink.rtnl.tcmsg.sched_ingress', 'pr2modules.netlink.rtnl.tcmsg.sched_netem', 'pr2modules.netlink.rtnl.tcmsg.sched_pfifo', 'pr2modules.netlink.rtnl.tcmsg.sched_pfifo_fast', 'pr2modules.netlink.rtnl.tcmsg.sched_plug', 'pr2modules.netlink.rtnl.tcmsg.sched_sfq', 'pr2modules.netlink.rtnl.tcmsg.sched_tbf', 'pr2modules.netlink.rtnl.tcmsg.sched_template', 'pr2modules.netlink.rtnl.tcmsg', 'pr2modules.netlink.rtnl.ndmsg', 'pr2modules.netlink.rtnl.ndtmsg', 'pr2modules.netlink.rtnl.rtgenmsg', 'pr2modules.netlink.rtnl.nsidmsg', 'pr2modules.netlink.rtnl.ifaddrmsg', 'pr2modules.netlink.rtnl.ifstatsmsg', 'pr2modules.netlink.rtnl.marshal', 'pr2modules.netlink.rtnl.riprsocket', 'pr2modules.netlink.rtnl.ifinfmsg.sync', 'pr2modules.netlink.rtnl.ifinfmsg.tuntap', 'pr2modules.netlink.rtnl.ifinfmsg.proxy', 'pr2modules.netlink.rtnl.iprsocket', 'pr2modules.netlink.rtnl.nsinfmsg', 'pr2modules.iproute.linux', 'pr2modules.iproute', 'pr2modules.netlink.generic.l2tp', 'pr2modules.netlink.generic.mptcp', 'pr2modules.netlink.nfnetlink', 'pr2modules.netlink.nfnetlink.nfctsocket', 'pr2modules.netlink.nfnetlink.nftsocket', 'pr2modules.netlink.nl80211', 'pr2modules.netlink.taskstats', 'pr2modules.netlink.uevent', 'pr2modules.netlink.generic.wireguard', 'pr2modules.bsd', 'pr2modules.iwutil', 'pr2modules.netns', 'pr2modules.netlink.generic.ethtool', 'pr2modules.ethtool.common', 'pr2modules.ethtool.ioctl', 'pr2modules.ethtool.ethtool', 'pr2modules.ethtool', 'pr2modules.ipdb', 'pr2modules.ipdb.exceptions', 'pr2modules.ipdb.linkedset', 'pr2modules.ipdb.transactional', 'pr2modules.ipdb.rules', 'pr2modules.ipdb.routes', 'pr2modules.ipdb.interfaces', 'pr2modules.ipdb.utils', 'pr2modules.ipdb.main', 'pr2modules.netlink.nfnetlink.ipset', 'pr2modules.ipset', 'pr2modules.wiset', 'pr2modules.cli', 'pr2modules.ndb', 'pr2modules.ndb.report', 'pr2modules.ndb.auth_manager', 'pr2modules.ndb.events', 'pr2modules.ndb.objects', 'pr2modules.ndb.objects.address', 'pr2modules.netlink.rtnl.p2pmsg', 'pr2modules.ndb.objects.interface', 'pr2modules.ndb.objects.neighbour', 'pr2modules.ndb.objects.netns', 'pr2modules.ndb.objects.route', 'pr2modules.ndb.objects.rule', 'pr2modules.ndb.messages', 'pr2modules.ndb.schema', 'mitogen', 'pstats', 'imp', '_lsprof', 'profile', 'cProfile', 'mitogen.core', 'mitogen.minify', 'mitogen.parent', '_sysconfigdata__linux_x86_64-linux-gnu', 'mitogen.master', 'pr2modules.remote.transport', 'pr2modules.remote.iproute', 'pr2modules.remote', 'pr2modules.inotify', 'pr2modules.inotify.inotify_msg', 'pr2modules.inotify.inotify_fd', 'pr2modules.netns.manager', 'pr2modules.nslink', 'pr2modules.nslink.nslink', 'pr2modules.ndb.source', 'pr2modules.ndb.main', 'pr2modules.cli.parser', 'pr2modules.cli.session', 'readline', 'pr2modules.cli.console', 'pr2modules.ndb.noipdb', 'pr2modules.cli.server', 'pr2modules.nftables', 'pr2modules.nftables.main', 'pr2modules.nslink.nspopen', 'pyroute2', 'aiodiscover.network', 'aiodiscover.discovery', 'aiodiscover', 'scapy', 'scapy.arch', 'gzip', 'scapy.modules', 'scapy.modules.six', 'scapy.compat', 'scapy.consts', 'scapy.error', 'scapy.modules.six.moves', 'scapy.base_classes', 'scapy.themes', 'scapy.config', 'scapy.dadict', 'scapy.libs', 'scapy.libs.ethertypes', 'scapy.data', 'scapy.pton_ntop', 'scapy.utils', 'scapy.volatile', 'scapy.utils6', 'scapy.interfaces', 'scapy.arch.linux', 'scapy.libs.structures', 'scapy.arch.common', 'scapy.packet', 'scapy.fields', 'scapy.extlib', 'matplotlib', 'matplotlib._api.deprecation', 'matplotlib._api', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core._multiarray_umath', 'numpy.compat._inspect', 'numpy.compat.py3k', 'numpy.compat', 'numpy.core.overrides', 'numpy.core.multiarray', 'numpy.core.umath', 'numpy.core._string_helpers', 'numpy.core._dtype', 'numpy.core._type_aliases', 'numpy.core.numerictypes', 'numpy.core._asarray', 'numpy.core._exceptions', 'numpy.core._methods', 'numpy.core.fromnumeric', 'numpy.core.shape_base', 'numpy.core._ufunc_config', 'numpy.core.arrayprint', 'numpy.core.numeric', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.einsumfunc', 'numpy.core._multiarray_tests', 'numpy.core._add_newdocs', 'numpy.core._add_newdocs_scalars', 'numpy.core._dtype_ctypes', 'numpy.core._internal', 'numpy._pytesttester', 'numpy.core', 'numpy.lib.mixins', 'numpy.lib.ufunclike', 'numpy.lib.type_check', 'numpy.lib.scimath', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.linalg.linalg', 'numpy.linalg', 'numpy.matrixlib.defmatrix', 'numpy.matrixlib', 'numpy.lib.histograms', 'numpy.lib.function_base', 'numpy.lib.stride_tricks', 'numpy.lib.index_tricks', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.format', 'numpy.lib._datasource', 'numpy.lib._iotools', 'numpy.lib.npyio', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.lib', 'numpy.fft._pocketfft_internal', 'numpy.fft._pocketfft', 'numpy.fft.helper', 'numpy.fft', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.polynomial', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.polynomial', '_cython_0_29_22', 'numpy.random._common', 'numpy.random.bit_generator', 'numpy.random._bounded_integers', 'numpy.random._mt19937', 'numpy.random.mtrand', 'numpy.random._philox', 'numpy.random._pcg64', 'numpy.random._sfc64', 'numpy.random._generator', 'numpy.random._pickle', 'numpy.random', 'numpy.ctypeslib', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.ma', 'numpy', 'matplotlib._c_internal_utils', 'matplotlib.cbook', 'matplotlib.docstring', 'PIL._version', 'PIL', 'PIL.ImageMode', 'PIL.TiffTags', 'PIL._binary', 'PIL._util', 'PIL._imaging', 'cffi.lock', 'cffi.error', 'cffi.model', 'cffi.api', 'cffi', 'PIL.Image', 'matplotlib._animation_data', 'matplotlib.animation', 'PIL.ImageChops', 'PIL.ImageFile', 'PIL.GimpGradientFile', 'PIL.GimpPaletteFile', 'PIL.ImageColor', 'PIL.PaletteFile', 'PIL.ImagePalette', 'PIL.ImageSequence', 'PIL.PngImagePlugin', 'matplotlib._path', 'matplotlib.bezier', 'matplotlib.path', 'matplotlib.transforms', 'matplotlib.ticker', 'matplotlib.scale', 'matplotlib._color_data', 'matplotlib.colors', 'pyparsing', 'matplotlib.fontconfig_pattern', 'matplotlib._enums', 'cycler', 'matplotlib.rcsetup', 'matplotlib._version', 'matplotlib.ft2font', 'kiwisolver', 'dateutil.rrule', 'matplotlib.units', 'matplotlib.dates']
DEBUG:matplotlib:CACHEDIR=/build/.cache/matplotlib
DEBUG:matplotlib.font_manager:font search path [PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf'), PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/afm'), PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts')]
Fontconfig error: Cannot load default config file: No such file: (null)
INFO:matplotlib.font_manager:generated new fontManager
DEBUG:matplotlib.pyplot:Loaded backend agg version unknown.
DEBUG:matplotlib.pyplot:Loaded backend agg version unknown.
INFO:homeassistant.setup:Setting up dhcp
INFO:homeassistant.setup:Setup of domain dhcp took 0.0 seconds
DEBUG:homeassistant.setup:Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'http', 'lovelace', 'onboarding', 'search', 'system_log', 'websocket_api']
DEBUG:homeassistant.setup:Dependency history will wait for dependencies ['http', 'recorder']
INFO:homeassistant.setup:Setting up input_boolean
INFO:homeassistant.setup:Setting up input_datetime
INFO:homeassistant.setup:Setting up input_number
INFO:homeassistant.setup:Setting up input_select
INFO:homeassistant.setup:Setting up input_text
DEBUG:homeassistant.setup:Dependency logbook will wait for dependencies ['frontend', 'http', 'recorder']
DEBUG:homeassistant.setup:Dependency map will wait for dependencies ['frontend']
DEBUG:homeassistant.setup:Dependency media_source will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency mobile_app will wait for dependencies ['http', 'webhook', 'person', 'tag', 'websocket_api']
DEBUG:homeassistant.setup:Dependency my will wait for dependencies ['frontend']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency person will wait for dependencies ['image']
INFO:homeassistant.setup:Setting up scene
DEBUG:homeassistant.setup:Dependency script will wait for dependencies ['blueprint', 'trace']
DEBUG:homeassistant.setup:Dependency ssdp will wait for dependencies ['network']
INFO:homeassistant.setup:Setting up sun
DEBUG:homeassistant.components.sun:sun phase_update@2021-07-13T00:36:44.255633+00:00: phase=day
DEBUG:homeassistant.components.sun:sun position_update@2021-07-13T00:36:44.256285+00:00: elevation=27.53 azimuth=279.35
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sun.sun, old_state=None, new_state=<state sun.sun=above_horizon; next_dawn=2021-07-13T12:22:09.432484+00:00, next_dusk=2021-07-13T03:27:26.222824+00:00, next_midnight=2021-07-13T07:54:45+00:00, next_noon=2021-07-13T19:54:39+00:00, next_rising=2021-07-13T12:50:46.993913+00:00, next_setting=2021-07-13T02:58:48.813963+00:00, elevation=27.53, azimuth=279.35, rising=False, friendly_name=Sun @ 2021-07-13T00:36:44.256466+00:00>>
DEBUG:homeassistant.components.sun:next time: 2021-07-13T02:03:21.157605+00:00
INFO:homeassistant.setup:Setup of domain sun took 0.0 seconds
DEBUG:homeassistant.setup:Dependency system_health will wait for dependencies ['http']
INFO:homeassistant.loader:Loaded homeassistant from homeassistant.components.homeassistant
INFO:homeassistant.setup:Setting up tag
INFO:homeassistant.setup:Setting up timer
INFO:homeassistant.setup:Setting up updater
INFO:homeassistant.setup:Setup of domain updater took 0.0 seconds
DEBUG:homeassistant.setup:Dependency webhook will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
INFO:homeassistant.setup:Setting up zone
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=dhcp>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=sun>
ERROR:homeassistant.components.updater:Unexpected error fetching Home Assistant update data: not enough values to unpack (expected 2, got 0)
Traceback (most recent call last):
File "/build/source/homeassistant/helpers/update_coordinator.py", line 187, in _async_refresh
self.data = await self._async_update_data()
File "/build/source/homeassistant/helpers/update_coordinator.py", line 147, in _async_update_data
return await self.update_method()
File "/build/source/homeassistant/components/updater/__init__.py", line 75, in check_new_version
newest, release_notes = await get_newest_version(hass)
ValueError: not enough values to unpack (expected 2, got 0)
DEBUG:homeassistant.components.updater:Finished fetching Home Assistant update data in 0.002 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=updater>
INFO:homeassistant.setup:Setting up blueprint
INFO:homeassistant.setup:Setup of domain blueprint took 0.0 seconds
INFO:homeassistant.setup:Setting up trace
INFO:homeassistant.setup:Setup of domain trace took 0.0 seconds
INFO:homeassistant.setup:Setting up http
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency auth will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency config will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up device_automation
INFO:homeassistant.setup:Setup of domain device_automation took 0.0 seconds
INFO:homeassistant.setup:Setting up lovelace
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.setup:Dependency onboarding will wait for dependencies ['analytics', 'auth', 'http', 'person']
DEBUG:homeassistant.setup:Dependency search will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency system_log will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up recorder
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=recorder, service=purge>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=recorder, service=purge_entities>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=recorder, service=enable>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=recorder, service=disable>
DEBUG:homeassistant.setup:Dependency image will wait for dependencies ['http']
INFO:homeassistant.setup:Setup of domain tag took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=blueprint>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=trace>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=device_automation>
INFO:homeassistant.loader:Loaded binary_sensor from homeassistant.components.binary_sensor
INFO:homeassistant.setup:Setting up homeassistant
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO:homeassistant.setup:Setup of domain homeassistant took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=tag>
INFO:homeassistant.setup:Setup of domain http took 0.1 seconds
INFO:homeassistant.setup:Setup of domain lovelace took 0.0 seconds
DEBUG:homeassistant.setup:Dependency analytics will wait for dependencies ['api', 'websocket_api']
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=counter, service=increment>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=counter, service=decrement>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=counter, service=reset>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=counter, service=configure>
INFO:homeassistant.setup:Setup of domain counter took 1.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=lovelace>
INFO:homeassistant.setup:Setting up binary_sensor
INFO:homeassistant.setup:Setup of domain binary_sensor took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_boolean, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_boolean, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_boolean, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_boolean, service=toggle>
INFO:homeassistant.setup:Setup of domain input_boolean took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_datetime, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_datetime, service=set_datetime>
INFO:homeassistant.setup:Setup of domain input_datetime took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_number, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_number, service=set_value>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_number, service=increment>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_number, service=decrement>
INFO:homeassistant.setup:Setup of domain input_number took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_option>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_next>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_previous>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_first>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=select_last>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_select, service=set_options>
INFO:homeassistant.setup:Setup of domain input_select took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_text, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=input_text, service=set_value>
INFO:homeassistant.setup:Setup of domain input_text took 0.1 seconds
INFO:homeassistant.components.scene:Setting up scene.homeassistant
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=start>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=pause>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=cancel>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=timer, service=finish>
INFO:homeassistant.setup:Setup of domain timer took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=zone, service=reload>
INFO:homeassistant.setup:Setting up automation
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=trigger>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=automation, service=reload>
INFO:homeassistant.setup:Setup of domain automation took 0.0 seconds
INFO:homeassistant.setup:Setting up script
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=script, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=script, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=script, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=script, service=toggle>
INFO:homeassistant.setup:Setup of domain script took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=counter>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=binary_sensor>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_boolean>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_datetime>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_number>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_select>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=input_text>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=scene, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=scene, service=apply>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=scene, service=create>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=timer>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=zone.home, old_state=None, new_state=<state zone.home=zoning; latitude=32.87336, longitude=-117.22743, radius=100, passive=False, editable=True, friendly_name=test home, icon=mdi:home @ 2021-07-13T00:36:44.401101+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=automation>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=script>
INFO:sqlalchemy.engine.Engine:BEGIN (implicit)
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("events")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("events")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("states")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("states")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("statistics")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("statistics")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("statistics_meta")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("statistics_meta")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("recorder_runs")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("recorder_runs")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:homeassistant.setup:Setting up media_source
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:sqlalchemy.engine.Engine:PRAGMA main.table_info("schema_changes")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA temp.table_info("schema_changes")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:homeassistant.setup:Setting up system_health
INFO:sqlalchemy.engine.Engine:
CREATE TABLE events (
event_id INTEGER NOT NULL,
event_type VARCHAR(64),
event_data TEXT,
origin VARCHAR(32),
time_fired DATETIME,
created DATETIME,
context_id VARCHAR(36),
context_user_id VARCHAR(36),
context_parent_id VARCHAR(36),
PRIMARY KEY (event_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00020s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_event_type_time_fired ON events (event_type, time_fired)
INFO:sqlalchemy.engine.Engine:[no key 0.00016s] ()
INFO:homeassistant.setup:Setting up webhook
INFO:homeassistant.setup:Setup of domain webhook took 0.0 seconds
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_context_parent_id ON events (context_parent_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00014s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_time_fired ON events (time_fired)
INFO:sqlalchemy.engine.Engine:[no key 0.00011s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_context_id ON events (context_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00012s] ()
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_events_context_user_id ON events (context_user_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00015s] ()
INFO:sqlalchemy.engine.Engine:
CREATE TABLE statistics (
id INTEGER NOT NULL,
created DATETIME,
source VARCHAR(32),
statistic_id VARCHAR(255),
start DATETIME,
mean FLOAT,
min FLOAT,
max FLOAT,
last_reset DATETIME,
state FLOAT,
sum FLOAT,
PRIMARY KEY (id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00013s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_statistics_start ON statistics (start)
INFO:sqlalchemy.engine.Engine:[no key 0.00013s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_statistics_statistic_id_start ON statistics (statistic_id, start)
INFO:sqlalchemy.engine.Engine:[no key 0.00012s] ()
INFO:sqlalchemy.engine.Engine:
CREATE TABLE statistics_meta (
statistic_id VARCHAR(255) NOT NULL,
source VARCHAR(32),
unit_of_measurement VARCHAR(255),
PRIMARY KEY (statistic_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00014s] ()
INFO:sqlalchemy.engine.Engine:
CREATE TABLE recorder_runs (
run_id INTEGER NOT NULL,
start DATETIME,
"end" DATETIME,
closed_incorrect BOOLEAN,
created DATETIME,
PRIMARY KEY (run_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00017s] ()
INFO:homeassistant.setup:Setting up auth
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_recorder_runs_start_end ON recorder_runs (start, "end")
INFO:homeassistant.setup:Setup of domain auth took 0.0 seconds
INFO:sqlalchemy.engine.Engine:[no key 0.00094s] ()
INFO:sqlalchemy.engine.Engine:
CREATE TABLE schema_changes (
change_id INTEGER NOT NULL,
schema_version INTEGER,
changed DATETIME,
PRIMARY KEY (change_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00011s] ()
INFO:homeassistant.setup:Setting up config
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:sqlalchemy.engine.Engine:
CREATE TABLE states (
state_id INTEGER NOT NULL,
domain VARCHAR(64),
entity_id VARCHAR(255),
state VARCHAR(255),
attributes TEXT,
event_id INTEGER,
last_changed DATETIME,
last_updated DATETIME,
created DATETIME,
old_state_id INTEGER,
PRIMARY KEY (state_id),
FOREIGN KEY(event_id) REFERENCES events (event_id) ON DELETE CASCADE,
FOREIGN KEY(old_state_id) REFERENCES states (state_id)
)
INFO:sqlalchemy.engine.Engine:[no key 0.00014s] ()
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_states_last_updated ON states (last_updated)
INFO:sqlalchemy.engine.Engine:[no key 0.00015s] ()
INFO:homeassistant.setup:Setting up system_log
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_states_event_id ON states (event_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00012s] ()
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO:homeassistant.setup:Setup of domain system_log took 0.0 seconds
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_states_entity_id_last_updated ON states (entity_id, last_updated)
INFO:homeassistant.setup:Setting up websocket_api
INFO:sqlalchemy.engine.Engine:[no key 0.00020s] ()
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
INFO:sqlalchemy.engine.Engine:CREATE INDEX ix_states_old_state_id ON states (old_state_id)
INFO:sqlalchemy.engine.Engine:[no key 0.00010s] ()
INFO:sqlalchemy.engine.Engine:COMMIT
DEBUG:homeassistant.components.recorder:Connected to recorder database
INFO:sqlalchemy.engine.Engine:BEGIN (implicit)
INFO:sqlalchemy.engine.Engine:SELECT schema_changes.change_id AS schema_changes_change_id, schema_changes.schema_version AS schema_changes_schema_version, schema_changes.changed AS schema_changes_changed
FROM schema_changes ORDER BY schema_changes.change_id DESC
LIMIT ? OFFSET ?
INFO:sqlalchemy.engine.Engine:[generated in 0.00022s] (1, 0)
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_list("events")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:homeassistant.setup:Setting up image
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_context_user_id")
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=scene, service=turn_on>
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:homeassistant.setup:Setup of domain scene took 0.2 seconds
INFO:homeassistant.setup:Setup of domain zone took 0.2 seconds
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_context_id")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_time_fired")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_context_parent_id")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
INFO:sqlalchemy.engine.Engine:PRAGMA main.index_info("ix_events_event_type_time_fired")
INFO:sqlalchemy.engine.Engine:[raw sql] ()
DEBUG:homeassistant.components.recorder.migration:No schema version found. Inspected version: 17
INFO:sqlalchemy.engine.Engine:INSERT INTO schema_changes (schema_version, changed) VALUES (?, ?)
INFO:sqlalchemy.engine.Engine:[generated in 0.00119s] (17, '2021-07-13 00:36:44.458554')
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=auth>
INFO:sqlalchemy.engine.Engine:COMMIT
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.area_registry>
INFO:sqlalchemy.engine.Engine:BEGIN (implicit)
INFO:sqlalchemy.engine.Engine:SELECT recorder_runs.run_id AS recorder_runs_run_id, recorder_runs.start AS recorder_runs_start, recorder_runs."end" AS recorder_runs_end, recorder_runs.closed_incorrect AS recorder_runs_closed_incorrect, recorder_runs.created AS recorder_runs_created
FROM recorder_runs
WHERE recorder_runs."end" IS NULL
INFO:sqlalchemy.engine.Engine:[generated in 0.00029s] ()
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
INFO:sqlalchemy.engine.Engine:INSERT INTO recorder_runs (start, "end", closed_incorrect, created) VALUES (?, ?, ?, ?)
INFO:sqlalchemy.engine.Engine:[generated in 0.00032s] ('2021-07-13 00:36:44.360145', None, 0, '2021-07-13 00:36:44.467812')
INFO:sqlalchemy.engine.Engine:COMMIT
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG:homeassistant.components.recorder:Recorder processing the queue
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=system_log>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.components.binary_sensor:Setting up binary_sensor.updater
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=scene>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=zone>
INFO:homeassistant.setup:Setup of domain image took 0.0 seconds
INFO:homeassistant.setup:Setup of domain media_source took 0.1 seconds
INFO:homeassistant.setup:Setup of domain system_health took 0.1 seconds
INFO:homeassistant.setup:Setup of domain config took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=image>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=media_source>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=system_health>
ERROR:homeassistant.setup:Setup failed for cloud: Unable to import component: No module named 'av'
INFO:homeassistant.setup:Setup of domain recorder took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=config>
INFO:homeassistant.setup:Setting up network
INFO:homeassistant.setup:Setting up search
INFO:homeassistant.setup:Setup of domain search took 0.0 seconds
INFO:homeassistant.setup:Setting up analytics
INFO:homeassistant.helpers.entity_registry:Registered new binary_sensor.updater entity: binary_sensor.updater
DEBUG:homeassistant.core:Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=binary_sensor.updater>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=binary_sensor.updater, old_state=None, new_state=<state binary_sensor.updater=unavailable; friendly_name=Updater @ 2021-07-13T00:36:44.513365+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=recorder>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=search>
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
INFO:homeassistant.setup:Setup of domain analytics took 0.0 seconds
INFO:homeassistant.setup:Setting up person
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=analytics>
INFO:homeassistant.setup:Setting up history
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain history took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=history>
INFO:homeassistant.setup:Setting up ssdp
INFO:homeassistant.setup:Setup of domain ssdp took 0.0 seconds
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=ssdp>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO:homeassistant.setup:Setup of domain person took 0.0 seconds
DEBUG:async_upnp_client.ssdp:Creating socket on (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('0.0.0.0', 0)) to (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('239.255.255.250', 1900))
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=person>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/components/ssdp/__init__.py", line 244, in async_start
await asyncio.gather(
File "/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/search.py", line 91, in async_start
sock, source, self._target = get_ssdp_socket(self.source_ip, self.target_ip)
File "/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/ssdp.py", line 228, in get_ssdp_socket
sock.setsockopt(
OSError: [Errno 19] No such device
ERROR:homeassistant.setup:Setup failed for mobile_app: Unable to import component: No module named 'av'
INFO:homeassistant.setup:Setting up onboarding
INFO:homeassistant.setup:Setup of domain onboarding took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO:homeassistant.setup:Setting up frontend
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO:homeassistant.setup:Setup of domain frontend took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=frontend>
INFO:homeassistant.setup:Setting up logbook
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=logbook, service=log>
INFO:homeassistant.setup:Setting up map
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain map took 0.0 seconds
INFO:homeassistant.setup:Setting up my
DEBUG:homeassistant.core:Bus:Handling <Event panels_updated[L]>
INFO:homeassistant.setup:Setup of domain my took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=map>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=my>
INFO:homeassistant.setup:Setup of domain logbook took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=logbook>
INFO:homeassistant.components.http:Now listening on port 8123
ERROR:homeassistant.setup:Unable to set up dependencies of default_config. Setup failed for dependencies: cloud, mobile_app, zeroconf
ERROR:homeassistant.setup:Setup failed for default_config: Could not set up all dependencies.
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded default_config from homeassistant.components.default_config
INFO homeassistant.loader:loader.py:349 Loaded automation from homeassistant.components.automation
INFO homeassistant.loader:loader.py:349 Loaded blueprint from homeassistant.components.blueprint
INFO homeassistant.loader:loader.py:349 Loaded trace from homeassistant.components.trace
INFO homeassistant.loader:loader.py:349 Loaded cloud from homeassistant.components.cloud
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded webhook from homeassistant.components.webhook
INFO homeassistant.loader:loader.py:349 Loaded counter from homeassistant.components.counter
INFO homeassistant.loader:loader.py:349 Loaded dhcp from homeassistant.components.dhcp
INFO homeassistant.loader:loader.py:349 Loaded frontend from homeassistant.components.frontend
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
INFO homeassistant.loader:loader.py:349 Loaded auth from homeassistant.components.auth
INFO homeassistant.loader:loader.py:349 Loaded config from homeassistant.components.config
INFO homeassistant.loader:loader.py:349 Loaded device_automation from homeassistant.components.device_automation
INFO homeassistant.loader:loader.py:349 Loaded lovelace from homeassistant.components.lovelace
INFO homeassistant.loader:loader.py:349 Loaded onboarding from homeassistant.components.onboarding
INFO homeassistant.loader:loader.py:349 Loaded analytics from homeassistant.components.analytics
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded person from homeassistant.components.person
INFO homeassistant.loader:loader.py:349 Loaded image from homeassistant.components.image
INFO homeassistant.loader:loader.py:349 Loaded search from homeassistant.components.search
INFO homeassistant.loader:loader.py:349 Loaded system_log from homeassistant.components.system_log
INFO homeassistant.loader:loader.py:349 Loaded history from homeassistant.components.history
INFO homeassistant.loader:loader.py:349 Loaded recorder from homeassistant.components.recorder
INFO homeassistant.loader:loader.py:349 Loaded input_boolean from homeassistant.components.input_boolean
INFO homeassistant.loader:loader.py:349 Loaded input_datetime from homeassistant.components.input_datetime
INFO homeassistant.loader:loader.py:349 Loaded input_number from homeassistant.components.input_number
INFO homeassistant.loader:loader.py:349 Loaded input_select from homeassistant.components.input_select
INFO homeassistant.loader:loader.py:349 Loaded input_text from homeassistant.components.input_text
INFO homeassistant.loader:loader.py:349 Loaded logbook from homeassistant.components.logbook
INFO homeassistant.loader:loader.py:349 Loaded map from homeassistant.components.map
INFO homeassistant.loader:loader.py:349 Loaded media_source from homeassistant.components.media_source
INFO homeassistant.loader:loader.py:349 Loaded mobile_app from homeassistant.components.mobile_app
INFO homeassistant.loader:loader.py:349 Loaded tag from homeassistant.components.tag
INFO homeassistant.loader:loader.py:349 Loaded my from homeassistant.components.my
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded scene from homeassistant.components.scene
INFO homeassistant.loader:loader.py:349 Loaded script from homeassistant.components.script
INFO homeassistant.loader:loader.py:349 Loaded ssdp from homeassistant.components.ssdp
INFO homeassistant.loader:loader.py:349 Loaded sun from homeassistant.components.sun
INFO homeassistant.loader:loader.py:349 Loaded system_health from homeassistant.components.system_health
INFO homeassistant.loader:loader.py:349 Loaded timer from homeassistant.components.timer
INFO homeassistant.loader:loader.py:349 Loaded updater from homeassistant.components.updater
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded zone from homeassistant.components.zone
DEBUG homeassistant.setup:setup.py:131 Dependency default_config will wait for dependencies ['automation', 'cloud', 'counter', 'dhcp', 'frontend', 'history', 'input_boolean', 'input_datetime', 'input_number', 'input_select', 'input_text', 'logbook', 'map', 'media_source', 'mobile_app', 'my', 'network', 'person', 'scene', 'script', 'ssdp', 'sun', 'system_health', 'tag', 'timer', 'updater', 'webhook', 'zeroconf', 'zone']
DEBUG homeassistant.setup:setup.py:131 Dependency automation will wait for dependencies ['blueprint', 'trace']
DEBUG homeassistant.setup:setup.py:131 Dependency cloud will wait for dependencies ['http', 'webhook']
INFO homeassistant.setup:setup.py:218 Setting up counter
DEBUG matplotlib:__init__.py:224 matplotlib data path: /nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data
DEBUG matplotlib:__init__.py:224 CONFIGDIR=/build/.config/matplotlib
DEBUG matplotlib:__init__.py:1394 matplotlib version 3.4.2
DEBUG matplotlib:__init__.py:1395 interactive is False
DEBUG matplotlib:__init__.py:1396 platform is linux
DEBUG matplotlib:__init__.py:1397 loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_warnings', '_frozen_importlib_external', '_io', 'marshal', 'posix', '_thread', '_weakref', 'time', 'zipimport', '_codecs', 'codecs', 'encodings.aliases', 'encodings', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', '_abc', 'abc', 'io', '_stat', 'stat', '_collections_abc', 'genericpath', 'posixpath', 'os.path', 'os', '_sitebuiltins', '_operator', 'operator', 'keyword', '_heapq', 'heapq', 'itertools', 'reprlib', '_collections', 'collections', '_functools', 'functools', 'sitecustomize', 'site', 'execnet._version', 'execnet.deprecated', '__future__', '_struct', 'struct', 'types', 'enum', '_sre', 'sre_constants', 'sre_parse', 'sre_compile', '_locale', 'copyreg', 're', 'token', 'tokenize', 'linecache', 'traceback', '_weakrefset', 'weakref', 'execnet.gateway_base', '_opcode', 'opcode', 'dis', 'collections.abc', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib', 'importlib.machinery', 'inspect', 'textwrap', 'execnet.gateway', 'execnet.gateway_bootstrap', 'atexit', 'threading', 'shlex', 'execnet.gateway_io', 'execnet.xspec', 'execnet.multi', '_hashlib', '_blake2', '_sha3', 'hashlib', '_queue', 'queue', 'execnet.rsync_remote', 'execnet.rsync', 'execnet', '_bootlocale', 'errno', 'py.error', 'py._error', 'py._vendored_packages', 'py._vendored_packages.apipkg.version', 'py._vendored_packages.apipkg', 'py._version', 'py.test', 'py.process', 'py.apipkg', 'py.iniconfig', 'py.path', 'py.code', 'py.builtin', 'py.io', 'py.xml', 'py.log', 'py', 'contextlib', 'typing.io', 'typing.re', 'typing', '_pytest._version', '_pytest', 'platform', 'attr._compat', 'copy', 'signal', '_posixsubprocess', 'select', 'math', 'selectors', 'subprocess', 'uuid', 'attr._config', 'attr.exceptions', 'attr.setters', 'attr._make', 'attr.converters', 'attr.filters', 'attr.validators', 'attr._cmp', 'attr._funcs', 'attr._version_info', 'attr._next_gen', 'attr', 'fnmatch', 'ntpath', 'urllib', 'urllib.parse', 'pathlib', '_pytest.outcomes', '_csv', 'csv', 'email', 'binascii', 'importlib.abc', 'importlib.util', 'zlib', '_compression', '_bz2', 'bz2', '_lzma', 'lzma', 'pwd', 'grp', 'shutil', 'zipfile', 'configparser', 'importlib.metadata', '_pytest.compat', '_pytest.warning_types', '_pytest.deprecated', 'pytest.collect', '_ast', 'ast', 'unicodedata', '_pytest._io.wcwidth', '_pytest._io.terminalwriter', '_pytest._io', 'pprint', '_pytest._io.saferepr', 'pluggy._version', 'pluggy._tracing', 'pluggy.callers', 'pluggy.hooks', 'pluggy.manager', 'pluggy', '_bisect', 'bisect', '_pytest._code.source', 'py._path', 'py._path.common', 'py._path.local', '_pytest._code.code', '_pytest._code', '_pytest.assertion.util', 'locale', 'gettext', 'argparse', '_pytest.hookspec', '_pytest.config.exceptions', 'iniconfig', '_pytest.pathlib', '_pytest.config.findpaths', '_pytest.store', '_pytest.config', '_pytest.mark.expression', '_pytest.mark.structures', '_pytest.config.argparsing', '_pytest.mark', '_pytest.nodes', '_pytest.fixtures', '_pytest.reports', 'bdb', '_pytest.timing', '_pytest.runner', '_pytest.main', '_pytest.assertion.rewrite', '_pytest.assertion.truncate', '_pytest.assertion', '_json', 'json.scanner', 'json.decoder', 'json.encoder', 'json', '_pytest.python', '_pytest.cacheprovider', '_sha512', '_random', 'random', 'tempfile', '_pytest.capture', '_pytest.debugging', '_pytest.freeze_support', '_string', 'string', 'logging', '_datetime', 'datetime', '_pytest.terminal', '_pytest.logging', '_pytest.monkeypatch', 'gc', '_pytest.tmpdir', '_pytest.pytester', 'numbers', '_decimal', 'decimal', '_pytest.python_api', '_pytest.recwarn', 'pytest', '_pytest.helpconfig', '_pytest.skipping', '_pytest.unittest', '_pytest.pastebin', '_pytest.nose', 'xml', 'xml.etree', 'xml.etree.ElementPath', 'pyexpat.errors', 'pyexpat.model', 'pyexpat', '_pytest.junitxml', '_pytest.doctest', '_pytest.setuponly', '_pytest.setupplan', '_pytest.stepwise', '_pytest.warnings', '_pytest.unraisableexception', '_pytest.threadexception', '_pytest.faulthandler', 'glob', '_pytest._argcomplete', 'toml.tz', 'toml.decoder', 'toml.encoder', 'toml', 'multidict._abc', 'multidict._multidict_base', 'multidict._multidict', 'multidict._compat', 'multidict', 'aiohttp.hdrs', 'concurrent', 'concurrent.futures._base', 'concurrent.futures', '_socket', 'socket', '_ssl', 'base64', 'ssl', 'asyncio.constants', 'asyncio.format_helpers', 'asyncio.base_futures', 'asyncio.log', 'asyncio.coroutines', '_contextvars', 'contextvars', 'asyncio.exceptions', 'asyncio.base_tasks', '_asyncio', 'asyncio.events', 'asyncio.futures', 'asyncio.protocols', 'asyncio.transports', 'asyncio.sslproto', 'asyncio.locks', 'asyncio.tasks', 'asyncio.staggered', 'asyncio.trsock', 'asyncio.base_events', 'asyncio.runners', 'asyncio.queues', 'asyncio.streams', 'asyncio.subprocess', 'asyncio.base_subprocess', 'asyncio.selector_events', 'asyncio.unix_events', 'asyncio', 'ipaddress', 'idna.package_data', 'idna.idnadata', 'idna.intranges', 'idna.core', 'idna', 'cython_runtime', 'yarl._quoting_c', 'yarl._quoting', 'yarl._url', 'yarl', 'http', 'calendar', 'email._parseaddr', 'email.base64mime', 'email.quoprimime', 'email.errors', 'quopri', 'email.encoders', 'email.charset', 'email.utils', 'html.entities', 'html', 'email.header', 'email._policybase', 'email.feedparser', 'email.parser', 'uu', 'email._encoded_words', 'email.iterators', 'email.message', 'http.client', 'mimetypes', 'socketserver', 'http.server', 'aiohttp.typedefs', 'aiohttp.http_exceptions', 'aiohttp.tcp_helpers', 'aiohttp.base_protocol', 'cgi', 'netrc', 'urllib.response', 'urllib.error', 'urllib.request', 'async_timeout', 'typing_extensions', 'aiohttp.log', 'aiohttp._helpers', 'aiohttp.helpers', 'http.cookies', 'aiohttp.abc', 'aiohttp._http_writer', 'aiohttp.http_writer', 'aiohttp.streams', '_brotli', 'brotli', '_cython_0_29_21', 'aiohttp._http_parser', 'aiohttp.http_parser', 'aiohttp._websocket', 'aiohttp.http_websocket', 'aiohttp.http', 'aiohttp.payload', 'aiohttp.client_exceptions', 'aiohttp.multipart', 'aiohttp.formdata', 'chardet.enums', 'chardet.charsetprober', 'chardet.charsetgroupprober', 'chardet.codingstatemachine', 'chardet.escsm', 'chardet.escprober', 'chardet.latin1prober', 'chardet.mbcssm', 'chardet.utf8prober', 'chardet.mbcharsetprober', 'chardet.euctwfreq', 'chardet.euckrfreq', 'chardet.gb2312freq', 'chardet.big5freq', 'chardet.jisfreq', 'chardet.chardistribution', 'chardet.jpcntx', 'chardet.sjisprober', 'chardet.eucjpprober', 'chardet.gb2312prober', 'chardet.euckrprober', 'chardet.cp949prober', 'chardet.big5prober', 'chardet.euctwprober', 'chardet.mbcsgroupprober', 'chardet.hebrewprober', 'chardet.sbcharsetprober', 'chardet.langbulgarianmodel', 'chardet.langgreekmodel', 'chardet.langhebrewmodel', 'chardet.langrussianmodel', 'chardet.langthaimodel', 'chardet.langturkishmodel', 'chardet.sbcsgroupprober', 'chardet.universaldetector', 'chardet.version', 'chardet', 'aiohttp.client_reqrep', 'aiohttp.client_ws', 'aiohttp.client_proto', 'aiohttp.locks', 'aiohttp.resolver', 'aiohttp.connector', '_compat_pickle', '_pickle', 'pickle', 'aiohttp.cookiejar', 'aiohttp._frozenlist', 'aiohttp.frozenlist', 'aiohttp.signals', 'aiohttp.tracing', 'aiohttp.client', 'aiohttp.payload_streamer', 'aiohttp', 'aiohttp.web_response', 'aiohttp.web_exceptions', 'aiohttp.web_request', 'aiohttp.web_log', 'aiohttp.web_fileresponse', 'aiohttp.web_routedef', 'aiohttp.web_urldispatcher', 'aiohttp.web_middlewares', 'aiohttp.web_protocol', 'aiohttp.web_server', 'aiohttp.web_app', 'aiohttp.web_runner', 'aiohttp.web_ws', 'aiohttp.web', 'unittest.util', 'unittest.result', 'difflib', 'unittest.case', 'unittest.async_case', 'unittest.suite', 'unittest.loader', 'unittest.signals', 'unittest.runner', 'unittest.main', 'unittest', 'unittest.mock', 'aiohttp.test_utils', 'aiohttp.pytest_plugin', 'pytest_aiohttp', 'pytest_mock._util', 'pytest_mock.plugin', 'pytest_mock', 'pkgutil', 'xml.parsers', 'xml.parsers.expat.model', 'xml.parsers.expat.errors', 'xml.parsers.expat', 'plistlib', 'pkg_resources.extern', 'pkg_resources._vendor', 'pkg_resources._vendor.appdirs', 'pkg_resources.extern.appdirs', 'pkg_resources._vendor.packaging.__about__', 'pkg_resources._vendor.packaging', 'pkg_resources.extern.packaging', 'pkg_resources.extern.packaging._structures', 'pkg_resources.extern.packaging._typing', 'pkg_resources.extern.packaging.version', 'pkg_resources.extern.packaging._compat', 'pkg_resources.extern.packaging.utils', 'pkg_resources.extern.packaging.specifiers', 'pkg_resources._vendor.pyparsing', 'pkg_resources.extern.pyparsing', 'pkg_resources.extern.packaging.markers', 'pkg_resources.extern.packaging.requirements', 'sysconfig', 'pkg_resources', 'pytest_rerunfailures', 'xdist.plugin', 'xdist._version', 'xdist', 'xdist.newhooks', 'xdist.looponfail', 'pytest_forked', 'urllib3.packages.ssl_match_hostname', 'urllib3.packages', 'urllib3.packages.six', 'urllib3.packages.six.moves', 'urllib3.packages.six.moves.http_client', 'urllib3.exceptions', 'urllib3._version', 'urllib3.contrib', 'urllib3.contrib._appengine_environ', 'urllib3.util.wait', 'urllib3.util.connection', 'urllib3.util.request', 'urllib3.util.response', 'urllib3.util.retry', 'hmac', 'urllib3.util.url', 'urllib3.util.ssltransport', 'urllib3.util.ssl_', 'urllib3.util.timeout', 'urllib3.util', 'urllib3.util.proxy', 'urllib3._collections', 'urllib3.connection', 'urllib3.fields', 'urllib3.filepost', 'urllib3.packages.six.moves.urllib', 'urllib3.packages.six.moves.urllib.parse', 'urllib3.request', 'urllib3.response', 'urllib3.util.queue', 'urllib3.connectionpool', 'urllib3.poolmanager', 'urllib3', 'requests.exceptions', 'requests.__version__', 'importlib.resources', 'certifi.core', 'certifi', 'requests.certs', 'simplejson.errors', 'simplejson.raw_json', 'simplejson.compat', 'simplejson._speedups', 'simplejson.scanner', 'simplejson.decoder', 'simplejson.encoder', 'simplejson', 'http.cookiejar', 'requests.compat', 'requests._internal_utils', 'requests.cookies', 'requests.structures', 'requests.utils', 'requests.packages.urllib3.packages.ssl_match_hostname', 'requests.packages.urllib3.packages', 'requests.packages.urllib3.packages.six', 'requests.packages.urllib3.packages.six.moves', 'requests.packages.urllib3.packages.six.moves.http_client', 'requests.packages.urllib3.exceptions', 'requests.packages.urllib3._version', 'requests.packages.urllib3.contrib', 'requests.packages.urllib3.contrib._appengine_environ', 'requests.packages.urllib3.util.wait', 'requests.packages.urllib3.util.connection', 'requests.packages.urllib3.util.request', 'requests.packages.urllib3.util.response', 'requests.packages.urllib3.util.retry', 'requests.packages.urllib3.util.url', 'requests.packages.urllib3.util.ssltransport', 'requests.packages.urllib3.util.ssl_', 'requests.packages.urllib3.util.timeout', 'requests.packages.urllib3.util', 'requests.packages.urllib3.util.proxy', 'requests.packages.urllib3._collections', 'requests.packages.urllib3.connection', 'requests.packages.urllib3.fields', 'requests.packages.urllib3.filepost', 'requests.packages.urllib3.packages.six.moves.urllib', 'requests.packages.urllib3.packages.six.moves.urllib.parse', 'requests.packages.urllib3.request', 'requests.packages.urllib3.response', 'requests.packages.urllib3.util.queue', 'requests.packages.urllib3.connectionpool', 'requests.packages.urllib3.poolmanager', 'requests.packages.urllib3', 'requests.packages.idna.package_data', 'requests.packages.idna.idnadata', 'requests.packages.idna.intranges', 'requests.packages.idna.core', 'requests.packages.idna', 'requests.packages.chardet.enums', 'requests.packages.chardet.charsetprober', 'requests.packages.chardet.charsetgroupprober', 'requests.packages.chardet.codingstatemachine', 'requests.packages.chardet.escsm', 'requests.packages.chardet.escprober', 'requests.packages.chardet.latin1prober', 'requests.packages.chardet.mbcssm', 'requests.packages.chardet.utf8prober', 'requests.packages.chardet.mbcharsetprober', 'requests.packages.chardet.euctwfreq', 'requests.packages.chardet.euckrfreq', 'requests.packages.chardet.gb2312freq', 'requests.packages.chardet.big5freq', 'requests.packages.chardet.jisfreq', 'requests.packages.chardet.chardistribution', 'requests.packages.chardet.jpcntx', 'requests.packages.chardet.sjisprober', 'requests.packages.chardet.eucjpprober', 'requests.packages.chardet.gb2312prober', 'requests.packages.chardet.euckrprober', 'requests.packages.chardet.cp949prober', 'requests.packages.chardet.big5prober', 'requests.packages.chardet.euctwprober', 'requests.packages.chardet.mbcsgroupprober', 'requests.packages.chardet.hebrewprober', 'requests.packages.chardet.sbcharsetprober', 'requests.packages.chardet.langbulgarianmodel', 'requests.packages.chardet.langgreekmodel', 'requests.packages.chardet.langhebrewmodel', 'requests.packages.chardet.langrussianmodel', 'requests.packages.chardet.langthaimodel', 'requests.packages.chardet.langturkishmodel', 'requests.packages.chardet.sbcsgroupprober', 'requests.packages.chardet.universaldetector', 'requests.packages.chardet.version', 'requests.packages.chardet', 'requests.packages', 'stringprep', 'encodings.idna', 'requests.hooks', 'requests.auth', 'requests.status_codes', 'requests.models', 'socks', 'urllib3.contrib.socks', 'requests.adapters', 'requests.sessions', 'requests.api', 'requests', 'six', 'six.moves', 'six.moves.urllib', 'requests_mock.exceptions', 'requests_mock.request', 'requests_mock.compat', 'requests_mock.response', 'requests_mock.adapter', 'requests_mock.mocker', 'requests_mock', 'requests_mock.contrib', 'distutils', 'distutils.version', 'requests_mock.contrib._pytest_plugin', 'anyio._core', 'anyio._core._compat', 'sniffio._version', 'sniffio._impl', 'sniffio', 'anyio._core._eventloop', 'anyio._core._exceptions', 'anyio.abc._resources', 'anyio._core._typedattr', 'anyio.abc._tasks', 'anyio.abc._streams', 'anyio.abc._sockets', 'anyio.abc._subprocesses', 'anyio.abc._testing', 'dataclasses', 'anyio.lowlevel', 'anyio._core._tasks', 'anyio._core._testing', 'anyio._core._synchronization', 'concurrent.futures.thread', 'anyio.from_thread', 'anyio.abc', 'anyio.to_thread', 'anyio._core._fileio', 'anyio._core._resources', 'anyio._core._signals', 'anyio.streams', 'anyio.streams.stapled', 'anyio.streams.tls', 'anyio._core._sockets', 'anyio.streams.memory', 'anyio._core._streams', 'anyio._core._subprocesses', 'anyio', 'anyio.pytest_plugin', 'tests', 'homeassistant', 'voluptuous.error', 'voluptuous.schema_builder', 'voluptuous.validators', 'voluptuous.util', 'voluptuous', 'slugify.special', 'text_unidecode', 'slugify.slugify', 'slugify', 'homeassistant.const', 'homeassistant.helpers', 'homeassistant.exceptions', 'homeassistant.helpers.frame', 'homeassistant.helpers.deprecation', 'ciso8601', 'backports', 'backports.zoneinfo._tzpath', 'backports.zoneinfo._common', 'backports.zoneinfo._version', 'backports.zoneinfo._czoneinfo', 'backports.zoneinfo', 'homeassistant.util.dt', 'homeassistant.util', 'homeassistant.util.async_', 'homeassistant.block_async_io', 'awesomeversion.exceptions', 'awesomeversion.comparehandlers', 'awesomeversion.strategy', 'awesomeversion.comparehandlers.base', 'awesomeversion.comparehandlers.container', 'awesomeversion.match', 'awesomeversion.comparehandlers.sections', 'awesomeversion.comparehandlers.devrc', 'awesomeversion.comparehandlers.modifier', 'awesomeversion.comparehandlers.simple', 'awesomeversion.handlers', 'awesomeversion.awesomeversion', 'awesomeversion', 'homeassistant.generated', 'homeassistant.generated.dhcp', 'homeassistant.generated.mqtt', 'homeassistant.generated.ssdp', 'homeassistant.generated.zeroconf', 'homeassistant.loader', 'homeassistant.util.location', 'homeassistant.util.timeout', 'homeassistant.util.distance', 'homeassistant.util.pressure', 'homeassistant.util.temperature', 'homeassistant.util.volume', 'homeassistant.util.unit_system', 'homeassistant.util.uuid', 'homeassistant.core', 'logging.handlers', 'voluptuous.humanize', 'jwt.compat', 'jwt.exceptions', 'cryptography.__about__', 'cryptography', 'cryptography.hazmat', 'cryptography.hazmat.primitives', 'cryptography.hazmat.primitives.asymmetric', 'cryptography.utils', 'cryptography.hazmat._der', 'cryptography.exceptions', 'cryptography.hazmat.backends', 'cryptography.hazmat.backends.interfaces', 'cryptography.hazmat.primitives.hashes', 'cryptography.hazmat.primitives.asymmetric.utils', 'jwt.utils', 'cryptography.hazmat.primitives._serialization', 'cryptography.hazmat.primitives.asymmetric.dsa', 'cryptography.hazmat._oid', 'cryptography.hazmat.primitives.asymmetric.ec', 'cryptography.hazmat.primitives.asymmetric.ed25519', 'cryptography.hazmat.primitives.asymmetric.ed448', 'cryptography.hazmat.primitives._asymmetric', 'cryptography.hazmat.primitives.asymmetric.rsa', 'cryptography.hazmat._types', 'cryptography.hazmat.primitives.asymmetric.dh', 'cryptography.hazmat.primitives.serialization.base', 'cryptography.hazmat.primitives._cipheralgorithm', 'cryptography.hazmat.primitives.ciphers.modes', 'cryptography.hazmat.primitives.ciphers.base', 'cryptography.hazmat.primitives.ciphers', 'cryptography.hazmat.primitives.ciphers.algorithms', '_cffi_backend', '_bcrypt.lib', '_bcrypt', 'bcrypt._bcrypt', 'bcrypt.__about__', 'bcrypt', 'cryptography.hazmat.primitives.serialization.ssh', 'cryptography.hazmat.primitives.serialization', 'cryptography.hazmat.primitives.asymmetric.padding', 'jwt.algorithms', 'jwt.api_jws', 'jwt.api_jwt', 'jwt', 'homeassistant.data_entry_flow', 'homeassistant.auth.const', 'secrets', 'homeassistant.auth.permissions.const', 'homeassistant.auth.permissions.models', 'homeassistant.auth.permissions.types', 'homeassistant.auth.permissions.util', 'homeassistant.auth.permissions.entities', 'homeassistant.auth.permissions.merge', 'homeassistant.auth.permissions', 'homeassistant.auth.models', 'homeassistant.auth.permissions.system_policies', 'homeassistant.auth.auth_store', 'homeassistant.helpers.typing', 'homeassistant.util.package', 'homeassistant.requirements', 'homeassistant.util.decorator', 'homeassistant.auth.mfa_modules', 'homeassistant.auth.providers', 'homeassistant.auth', 'voluptuous_serialize', 'jinja2.bccache', 'markupsafe._speedups', 'markupsafe', 'jinja2.utils', 'jinja2.nodes', 'jinja2.exceptions', 'jinja2.visitor', 'jinja2.idtracking', 'jinja2.optimizer', 'jinja2.compiler', 'jinja2.async_utils', 'jinja2.runtime', 'jinja2.filters', 'jinja2.tests', 'jinja2.defaults', 'jinja2._identifier', 'jinja2.lexer', 'jinja2.parser', 'jinja2.environment', 'jinja2.loaders', 'jinja2', 'jinja2.sandbox', 'homeassistant.helpers.debounce', 'homeassistant.helpers.device_registry', 'homeassistant.util.yaml.const', 'yaml.error', 'yaml.tokens', 'yaml.events', 'yaml.nodes', 'yaml.reader', 'yaml.scanner', 'yaml.parser', 'yaml.composer', 'yaml.constructor', 'yaml.resolver', 'yaml.loader', 'yaml.emitter', 'yaml.serializer', 'yaml.representer', 'yaml.dumper', 'yaml._yaml', 'yaml.cyaml', 'yaml', 'homeassistant.util.yaml.objects', 'homeassistant.util.yaml.dumper', 'homeassistant.util.yaml.input', 'homeassistant.util.yaml.loader', 'homeassistant.util.yaml', 'homeassistant.helpers.entity_registry', 'homeassistant.helpers.location', '_ctypes', 'ctypes._endian', 'ctypes', 'homeassistant.util.thread', 'homeassistant.helpers.template', 'homeassistant.helpers.script_variables', 'homeassistant.helpers.logging', 'homeassistant.helpers.config_validation', 'homeassistant.helpers.entity_values', 'homeassistant.config', 'homeassistant.helpers.ratelimit', 'homeassistant.helpers.sun', 'homeassistant.helpers.event', 'timeit', 'homeassistant.setup', 'homeassistant.config_entries', 'homeassistant.components', 'homeassistant.util.json', 'homeassistant.helpers.storage', 'homeassistant.util.ssl', 'homeassistant.components.http.const', 'homeassistant.components.http.auth', 'homeassistant.helpers.json', 'homeassistant.components.http.view', 'homeassistant.components.http.ban', 'homeassistant.components.http.cors', 'homeassistant.components.http.forwarded', 'homeassistant.components.http.request_context', 'homeassistant.components.http.security_filter', 'homeassistant.components.http.static', 'homeassistant.components.http.web_runner', 'homeassistant.components.http', 'homeassistant.helpers.area_registry', 'homeassistant.util.logging', 'homeassistant.helpers.dispatcher', 'homeassistant.bootstrap', 'homeassistant.util.executor', 'homeassistant.runner', 'homeassistant.auth.providers.homeassistant', 'homeassistant.auth.providers.legacy_api_password', 'homeassistant.components.websocket_api.const', 'homeassistant.helpers.service', 'homeassistant.helpers.entity_platform', 'homeassistant.helpers.entity', 'homeassistant.components.websocket_api.messages', 'homeassistant.components.websocket_api.connection', 'homeassistant.components.websocket_api.decorators', 'homeassistant.components.websocket_api.commands', 'homeassistant.components.websocket_api.error', 'homeassistant.components.websocket_api.auth', 'homeassistant.components.websocket_api.http', 'homeassistant.components.websocket_api', 'homeassistant.components.mqtt.const', 'homeassistant.components.mqtt.models', 'homeassistant.components.mqtt.debug_info', 'homeassistant.components.mqtt.abbreviations', 'homeassistant.components.mqtt.discovery', 'homeassistant.components.mqtt.util', 'homeassistant.components.mqtt', '_sqlite3', 'sqlite3.dbapi2', 'sqlite3', 'sqlalchemy.util.compat', 'sqlalchemy.cimmutabledict', 'sqlalchemy.util._collections', 'sqlalchemy.util._preloaded', 'greenlet._greenlet', 'greenlet', 'sqlalchemy.exc', 'sqlalchemy.util.langhelpers', 'sqlalchemy.util._concurrency_py3k', 'sqlalchemy.util.concurrency', 'sqlalchemy.util.deprecations', 'sqlalchemy.util', 'sqlalchemy.sql.roles', 'sqlalchemy.sql.visitors', 'sqlalchemy.sql.operators', 'sqlalchemy.inspection', 'sqlalchemy.sql.traversals', 'sqlalchemy.sql.base', 'sqlalchemy.sql.coercions', 'sqlalchemy.sql.type_api', 'sqlalchemy.sql.annotation', 'sqlalchemy.sql.elements', 'sqlalchemy.event.legacy', 'sqlalchemy.event.registry', 'sqlalchemy.event.attr', 'sqlalchemy.event.base', 'sqlalchemy.event.api', 'sqlalchemy.event', 'sqlalchemy.cprocessors', 'sqlalchemy.processors', 'sqlalchemy.sql.sqltypes', 'sqlalchemy.types', 'sqlalchemy.util.topological', 'sqlalchemy.sql.ddl', 'sqlalchemy.sql.selectable', 'sqlalchemy.sql.schema', 'sqlalchemy.sql.util', 'sqlalchemy.sql.dml', 'sqlalchemy.sql.crud', 'sqlalchemy.sql.functions', 'sqlalchemy.sql.compiler', 'sqlalchemy.sql.lambdas', 'sqlalchemy.sql.expression', 'sqlalchemy.sql.events', 'sqlalchemy.sql.default_comparator', 'sqlalchemy.sql.naming', 'sqlalchemy.sql', 'sqlalchemy.engine.interfaces', 'sqlalchemy.engine.util', 'sqlalchemy.log', 'sqlalchemy.engine.base', 'sqlalchemy.engine.events', 'sqlalchemy.dialects', 'sqlalchemy.engine.url', 'sqlalchemy.engine.mock', 'sqlalchemy.pool.base', 'sqlalchemy.pool.events', 'sqlalchemy.util.queue', 'sqlalchemy.pool.impl', 'sqlalchemy.pool.dbapi_proxy', 'sqlalchemy.pool', 'sqlalchemy.engine.create', 'sqlalchemy.cresultproxy', 'sqlalchemy.engine.row', 'sqlalchemy.engine.result', 'sqlalchemy.engine.cursor', 'sqlalchemy.engine.reflection', 'sqlalchemy.engine', 'sqlalchemy.schema', 'sqlalchemy.events', 'sqlalchemy.engine.characteristics', 'sqlalchemy.engine.default', 'sqlalchemy', 'sqlalchemy.orm.exc', 'sqlalchemy.orm.base', 'sqlalchemy.orm.collections', 'sqlalchemy.orm.path_registry', 'sqlalchemy.orm.interfaces', 'sqlalchemy.orm.attributes', 'sqlalchemy.orm.state', 'sqlalchemy.orm.instrumentation', 'sqlalchemy.orm.util', 'sqlalchemy.orm.strategy_options', 'sqlalchemy.future.engine', 'sqlalchemy.future', 'sqlalchemy.orm.loading', 'sqlalchemy.orm.descriptor_props', 'sqlalchemy.orm.relationships', 'sqlalchemy.orm.properties', 'sqlalchemy.orm.mapper', 'sqlalchemy.orm.context', 'sqlalchemy.orm.clsregistry', 'sqlalchemy.orm.decl_base', 'sqlalchemy.orm.decl_api', 'sqlalchemy.orm.identity', 'sqlalchemy.orm.query', 'sqlalchemy.orm.evaluator', 'sqlalchemy.orm.sync', 'sqlalchemy.orm.persistence', 'sqlalchemy.orm.unitofwork', 'sqlalchemy.orm.session', 'sqlalchemy.orm.scoping', 'sqlalchemy.orm.events', 'sqlalchemy.orm.strategies', 'sqlalchemy.orm.dynamic', 'sqlalchemy.orm.dependency', 'sqlalchemy.ext.baked', 'sqlalchemy.ext', 'sqlalchemy.orm', 'homeassistant.components.persistent_notification', 'homeassistant.helpers.entityfilter', 'homeassistant.helpers.integration_platform', 'array', 'sqlalchemy.dialects.mysql.types', 'sqlalchemy.dialects.mysql.enumerated', 'sqlalchemy.dialects.mysql.reflection', 'sqlalchemy.dialects.mysql.json', 'sqlalchemy.dialects.mysql.base', 'sqlalchemy.dialects.mysql.mysqldb', 'sqlalchemy.dialects.mysql.cymysql', 'sqlalchemy.dialects.mysql.mariadbconnector', 'sqlalchemy.dialects.mysql.mysqlconnector', 'sqlalchemy.dialects.mysql.oursql', 'sqlalchemy.dialects.mysql.pymysql', 'sqlalchemy.connectors', 'sqlalchemy.connectors.pyodbc', 'sqlalchemy.dialects.mysql.pyodbc', 'sqlalchemy.dialects.mysql.dml', 'sqlalchemy.dialects.mysql.aiomysql', 'sqlalchemy.dialects.mysql', 'sqlalchemy.ext.declarative.extensions', 'sqlalchemy.ext.declarative', 'homeassistant.components.recorder.models', 'homeassistant.components.recorder.const', 'homeassistant.components.recorder.util', 'homeassistant.components.recorder.history', 'homeassistant.components.recorder.migration', 'homeassistant.components.recorder.repack', 'homeassistant.components.recorder.purge', 'homeassistant.components.recorder.statistics', 'homeassistant.components.recorder.pool', 'homeassistant.components.recorder', 'homeassistant.util.network', 'homeassistant.helpers.network', 'homeassistant.helpers.aiohttp_client', 'homeassistant.helpers.config_entry_oauth2_flow', 'tests.ignore_uncaught_exceptions', 'homeassistant.components.device_automation.exceptions', 'homeassistant.components.device_automation', 'homeassistant.helpers.intent', 'homeassistant.helpers.singleton', 'homeassistant.helpers.restore_state', 'tests.common', 'tests.test_util', 'tests.test_util.aiohttp', 'tests.conftest', 'py._builtin', 'tests.components', 'tests.components.conftest', 'tests.components.hue', 'aiohue.clip', 'aiohue.config', 'aiohue.errors', 'aiohue.api', 'aiohue.groups', 'aiohue.lights', 'aiohue.scenes', 'aiohue.sensors', 'aiohue.bridge', 'aiohue', 'aiohue.util', 'homeassistant.components.hue.const', 'homeassistant.components.hue.errors', 'homeassistant.components.hue.helpers', 'homeassistant.helpers.discovery', 'homeassistant.helpers.entity_component', 'homeassistant.components.sensor', 'homeassistant.helpers.update_coordinator', 'homeassistant.components.hue.sensor_device', 'homeassistant.components.hue.hue_event', 'homeassistant.components.hue.sensor_base', 'homeassistant.components.hue.bridge', 'homeassistant.components.hue', 'tests.components.light', 'colorsys', 'homeassistant.util.color', 'homeassistant.components.light', 'tests.components.light.conftest', 'tests.components.hue.conftest', 'tests.components.recorder', 'tests.components.recorder.common', 'tests.components.recorder.conftest', 'tests.components.zeroconf', 'tests.components.zeroconf.conftest', 'py._log', 'syslog', 'py._log.log', 'faulthandler', 'cmd', 'codeop', 'code', 'pdb', 'py._code', 'py._code.code', 'tests.helpers', 'tests.helpers.conftest', 'tests.test_bootstrap', 'encodings.unicode_escape', 'homeassistant.helpers.check_config', 'tests.test_config', 'tests.test_config_entries', 'tests.test_core', 'tests.test_data_entry_flow', 'tests.test_exceptions', 'homeassistant.components.hue.light', 'tests.test_loader', 'homeassistant.__main__', 'tests.test_main', 'tests.test_requirements', 'tests.test_runner', 'tests.test_setup', 'tests.auth', 'tests.auth.test_auth_store', 'tests.auth.test_init', 'tests.auth.test_models', 'tests.auth.mfa_modules', 'tests.auth.mfa_modules.test_insecure_example', 'tests.auth.mfa_modules.test_totp', 'tests.auth.permissions', 'tests.auth.permissions.test_entities', 'tests.auth.permissions.test_merge', 'tests.auth.permissions.test_system_policies', 'tests.auth.permissions.test_util', 'tests.auth.providers', 'homeassistant.auth.providers.command_line', 'tests.auth.providers.test_command_line', 'tests.auth.providers.test_homeassistant', 'homeassistant.auth.providers.insecure_example', 'tests.auth.providers.test_insecure_example', 'tests.auth.providers.test_legacy_api_password', 'homeassistant.auth.providers.trusted_networks', 'tests.auth.providers.test_trusted_networks', 'tests.hassfest', 'script', 'script.hassfest', 'script.hassfest.model', 'script.hassfest.dependencies', 'tests.hassfest.test_dependencies', 'script.hassfest.manifest', 'tests.hassfest.test_version', 'tests.helpers.test_aiohttp_client', 'tests.helpers.test_area_registry', 'tests.helpers.test_check_config', 'homeassistant.helpers.collection', 'tests.helpers.test_collection', 'homeassistant.components.sun', 'homeassistant.components.blueprint.const', 'homeassistant.components.blueprint.errors', 'homeassistant.helpers.selector', 'homeassistant.components.blueprint.schemas', 'homeassistant.components.blueprint.models', 'homeassistant.components.blueprint.importer', 'homeassistant.components.blueprint.websocket_api', 'homeassistant.components.blueprint', 'homeassistant.components.zone.const', 'homeassistant.components.zone', 'homeassistant.helpers.trace', 'homeassistant.helpers.condition', 'homeassistant.components.scene', 'homeassistant.components.logger', 'homeassistant.helpers.trigger', 'homeassistant.helpers.script', 'homeassistant.components.trace.const', 'homeassistant.components.trace.websocket_api', 'homeassistant.components.trace.utils', 'homeassistant.components.trace', 'homeassistant.components.automation.const', 'homeassistant.components.automation.helpers', 'homeassistant.components.automation.config', 'homeassistant.components.automation.trace', 'homeassistant.components.automation', 'tests.helpers.test_condition', 'homeassistant.helpers.config_entry_flow', 'tests.helpers.test_config_entry_flow', 'tests.helpers.test_config_entry_oauth2_flow', 'tests.helpers.test_config_validation', 'tests.helpers.test_debounce', 'tests.helpers.test_deprecation', 'tests.helpers.test_device_registry', 'tests.helpers.test_discovery', 'tests.helpers.test_dispatcher', 'tests.helpers.test_entity', 'tests.helpers.test_entity_component', 'tests.helpers.test_entity_platform', 'tests.helpers.test_entity_registry', 'tests.helpers.test_entity_values', 'tests.helpers.test_entityfilter', 'pytz.exceptions', 'pytz.lazy', 'pytz.tzinfo', 'pytz.tzfile', 'pytz', 'astral', 'astral.sun', 'tests.helpers.test_event', 'tests.helpers.test_frame', 'httpx.__version__', 'httpx._exceptions', 'rfc3986.compat', 'rfc3986.exceptions', 'rfc3986.abnf_regexp', 'rfc3986.misc', 'rfc3986.normalizers', 'rfc3986.validators', 'rfc3986._mixin', 'rfc3986.uri', 'rfc3986.iri', 'rfc3986.parseresult', 'rfc3986.api', 'rfc3986', 'httpx._transports', 'httpx._transports.base', 'httpx._types', 'httpx._utils', 'httpx._multipart', 'httpx._content', 'httpx._decoders', 'httpx._status_codes', 'httpx._models', 'httpx._auth', 'httpx._compat', 'httpx._config', 'httpx._transports.asgi', 'httpcore._async', 'httpcore._types', 'httpcore._async.base', 'httpcore._backends', 'httpcore._backends.base', 'httpcore._exceptions', 'httpcore._utils', 'httpcore._backends.sync', 'httpcore._backends.auto', 'httpcore._threadlock', 'httpcore._async.http', 'h11._abnf', 'h11._util', 'h11._headers', 'h11._events', 'h11._state', 'h11._readers', 'h11._receivebuffer', 'h11._writers', 'h11._connection', 'h11._version', 'h11', 'httpcore._sync', 'httpcore._sync.base', 'httpcore._bytestreams', 'httpcore._async.http11', 'httpcore._async.connection', 'httpcore._async.connection_pool', 'httpcore._async.http_proxy', 'httpcore._sync.http', 'httpcore._sync.http11', 'httpcore._sync.connection', 'httpcore._sync.connection_pool', 'httpcore._sync.http_proxy', 'httpcore', 'httpx._transports.default', 'httpx._transports.wsgi', 'httpx._client', 'httpx._api', 'httpx._transports.mock', 'httpx', 'homeassistant.helpers.httpx_client', 'tests.helpers.test_httpx_client', 'tests.helpers.test_icon', 'tests.helpers.test_init', 'tests.helpers.test_instance_id', 'tests.helpers.test_integration_platform', 'tests.helpers.test_intent', 'tests.helpers.test_json', 'tests.helpers.test_location', 'fcntl', 'atomicwrites', 'jose.exceptions', 'jose', 'cryptography.hazmat.bindings', 'cryptography.hazmat.bindings.openssl', '_openssl.lib', '_openssl', 'cryptography.hazmat.bindings._openssl', 'cryptography.hazmat.bindings.openssl._conditional', 'cryptography.hazmat.bindings.openssl.binding', 'cryptography.hazmat.primitives.hmac', 'cryptography.x509.certificate_transparency', 'cryptography.hazmat.primitives.constant_time', 'cryptography.x509.oid', 'cryptography.x509.name', 'cryptography.x509.general_name', 'cryptography.x509.extensions', 'cryptography.x509.base', 'cryptography.x509', 'cryptography.hazmat.backends.openssl.aead', 'cryptography.hazmat.backends.openssl.ciphers', 'cryptography.hazmat.backends.openssl.cmac', 'cryptography.hazmat.backends.openssl.decode_asn1', 'cryptography.hazmat.backends.openssl.dh', 'cryptography.hazmat.backends.openssl.utils', 'cryptography.hazmat.backends.openssl.dsa', 'cryptography.hazmat.backends.openssl.ec', 'cryptography.hazmat.backends.openssl.ed25519', 'cryptography.hazmat.backends.openssl.ed448', 'cryptography.hazmat.backends.openssl.encode_asn1', 'cryptography.hazmat.backends.openssl.hashes', 'cryptography.hazmat.backends.openssl.hmac', 'cryptography.hazmat.backends.openssl.rsa', 'cryptography.hazmat.backends.openssl.x509', 'cryptography.x509.ocsp', 'cryptography.hazmat.backends.openssl.ocsp', 'cryptography.hazmat.backends.openssl.poly1305', 'cryptography.hazmat.primitives.asymmetric.x25519', 'cryptography.hazmat.backends.openssl.x25519', 'cryptography.hazmat.primitives.asymmetric.x448', 'cryptography.hazmat.backends.openssl.x448', 'cryptography.hazmat.primitives.kdf', 'cryptography.hazmat.primitives.kdf.scrypt', 'cryptography.hazmat.primitives.serialization.pkcs7', 'cryptography.hazmat.backends.openssl.backend', 'cryptography.hazmat.backends.openssl', 'cryptography.hazmat.primitives.ciphers.aead', 'cryptography.hazmat.primitives.keywrap', '_padding.lib', '_padding', 'cryptography.hazmat.bindings._padding', 'cryptography.hazmat.primitives.padding', 'jose.constants', 'jose.utils', 'jose.backends.base', 'jose.backends.cryptography_backend', 'jose.backends', 'jose.jwk', 'jose.jws', 'jose.jwt', 'botocore', 'botocore.vendored', 'botocore.vendored.six', 'botocore.vendored.requests.packages.urllib3.exceptions', 'botocore.vendored.requests.packages.urllib3', 'botocore.vendored.requests.packages', 'botocore.vendored.requests.exceptions', 'botocore.vendored.requests', 'botocore.exceptions', 'dateutil._version', 'dateutil', 'dateutil.tz._common', 'dateutil.tz._factories', 'dateutil.tz.tz', 'dateutil.tz', 'botocore.vendored.six.moves', 'xml.etree.cElementTree', 'botocore.compat', 'botocore.configloader', 'termios', 'getpass', 'dateutil._common', 'dateutil.relativedelta', 'dateutil.parser._parser', 'dateutil.parser.isoparser', 'dateutil.parser', 'OpenSSL._util', 'OpenSSL.crypto', 'OpenSSL.SSL', 'OpenSSL.version', 'OpenSSL', 'urllib3.packages.backports', 'urllib3.packages.backports.makefile', 'urllib3.contrib.pyopenssl', 'botocore.vendored.six.moves.urllib_parse', 'botocore.httpsession', 'botocore.vendored.six.moves.urllib', 'botocore.vendored.six.moves.urllib.request', 'botocore.utils', 'botocore.awsrequest', 'botocore.hooks', 'botocore.history', 'botocore.eventstream', 'botocore.parsers', 'botocore.response', 'botocore.endpoint', 'botocore.config', 'botocore.credentials', 'jmespath.compat', 'jmespath.exceptions', 'jmespath.lexer', 'jmespath.ast', 'jmespath.functions', 'jmespath.visitor', 'jmespath.parser', 'jmespath', 'botocore.docs.utils', 'botocore.docs.shape', 'botocore.docs.params', 'botocore.docs.example', 'botocore.docs.method', 'botocore.docs.sharedexample', 'botocore.docs.client', 'botocore.docs.waiter', 'botocore.docs.paginator', 'botocore.docs.bcdoc', '_markupbase', 'html.parser', 'botocore.docs.bcdoc.docstringparser', 'botocore.docs.bcdoc.style', 'botocore.docs.bcdoc.restdoc', 'botocore.docs.service', 'botocore.docs', 'botocore.docs.docstring', 'botocore.waiter', 'botocore.validate', 'botocore.serialize', 'botocore.auth', 'botocore.signers', 'botocore.args', 'botocore.model', 'botocore.paginate', 'botocore.discovery', 'botocore.retries', 'botocore.retries.quota', 'botocore.retries.base', 'botocore.retries.special', 'botocore.retries.standard', 'botocore.retries.bucket', 'botocore.retries.throttling', 'botocore.retries.adaptive', 'botocore.client', 'botocore.configprovider', 'botocore.errorfactory', 'botocore.retryhandler', 'botocore.translate', 'botocore.handlers', 'botocore.loaders', 'botocore.regions', 'botocore.monitoring', 'botocore.session', 'boto3.utils', 'boto3.exceptions', 'boto3.resources', 'boto3.resources.params', 'boto3.resources.response', 'boto3.resources.model', 'boto3.docs.client', 'boto3.docs.base', 'boto3.docs.method', 'boto3.docs.utils', 'boto3.docs.action', 'boto3.docs.waiter', 'boto3.docs.collection', 'boto3.docs.subresource', 'boto3.docs.attr', 'boto3.docs.resource', 'boto3.docs.service', 'boto3.docs', 'boto3.docs.docstring', 'boto3.resources.action', 'boto3.resources.base', 'boto3.resources.collection', 'boto3.resources.factory', 'boto3.session', 'boto3.compat', 'boto3', 'envs.exceptions', 'envs', 'pycognito.exceptions', 'pycognito.aws_srp', 'pycognito', 'hass_nabucasa.const', 'hass_nabucasa.auth', 'hass_nabucasa.client', 'hass_nabucasa.cloud_api', 'hass_nabucasa.cloudhooks', 'hass_nabucasa.utils', 'hass_nabucasa.iot_base', 'hass_nabucasa.google_report_state', 'hass_nabucasa.iot', 'snitun', 'snitun.exceptions', 'snitun.utils', 'snitun.utils.aes', 'snitun.client', 'snitun.multiplexer', 'snitun.utils.ipaddress', 'snitun.multiplexer.message', 'snitun.multiplexer.channel', 'snitun.multiplexer.crypto', 'snitun.multiplexer.core', 'snitun.client.connector', 'snitun.client.client_peer', 'snitun.utils.aiohttp_client', 'josepy.b64', 'josepy.errors', 'josepy.util', 'josepy.interfaces', 'josepy.json_util', 'josepy.jwk', 'josepy.jwa', 'josepy.jws', 'josepy', 'acme.jose.b64', 'acme.jose.errors', 'acme.jose.util', 'acme.jose.interfaces', 'acme.jose.json_util', 'acme.jose.jwk', 'acme.jose.jwa', 'acme.jose.jws', 'acme.jose', 'acme', 'acme.errors', 'acme.crypto_util', 'pyrfc3339.utils', 'pyrfc3339.generator', 'pyrfc3339.parser', 'pyrfc3339', 'acme.fields', 'acme.mixins', 'acme.challenges', 'urllib3.contrib.appengine', 'requests.packages.urllib3.packages.backports', 'requests.packages.urllib3.packages.backports.makefile', 'requests.packages.urllib3.contrib.pyopenssl', 'requests_toolbelt._compat', 'requests_toolbelt.adapters.ssl', 'requests_toolbelt.adapters.source', 'requests_toolbelt.adapters', 'requests_toolbelt.auth', 'requests_toolbelt.auth._digest_auth_compat', 'requests_toolbelt.auth.http_proxy_digest', 'requests_toolbelt.auth.guess', 'requests_toolbelt.multipart.encoder', 'requests_toolbelt.multipart.decoder', 'requests_toolbelt.multipart', 'requests_toolbelt.streaming_iterator', 'requests_toolbelt.utils', 'requests_toolbelt.utils.user_agent', 'requests_toolbelt', 'acme.jws', 'acme.util', 'acme.messages', 'acme.client', 'hass_nabucasa.acme', 'hass_nabucasa.remote', 'hass_nabucasa.voice', 'hass_nabucasa', 'homeassistant.helpers.temperature', 'homeassistant.components.climate.const', 'homeassistant.components.climate', 'homeassistant.components.alexa.const', 'homeassistant.components.alexa.flash_briefings', 'homeassistant.components.alexa.intent', 'homeassistant.components.alexa.auth', 'homeassistant.helpers.significant_change', 'homeassistant.components.alarm_control_panel.const', 'homeassistant.components.alarm_control_panel', 'homeassistant.components.notify', 'homeassistant.components.alert', 'homeassistant.components.binary_sensor', 'homeassistant.components.media_player.const', 'homeassistant.components.media_player.errors', 'homeassistant.components.media_player', 'homeassistant.components.stream.const', 'homeassistant.components.stream.core', 'homeassistant.components.stream.fmp4utils', 'homeassistant.components.stream.hls', 'tests.helpers.test_ratelimit', 'homeassistant.helpers.recorder', 'tests.helpers.test_recorder', 'homeassistant.helpers.reload', 'tests.helpers.test_reload', 'tests.helpers.test_restore_state', 'tests.helpers.test_script', 'tests.helpers.test_script_variables', 'tests.helpers.test_selector', 'tests.helpers.test_service', 'tests.helpers.test_significant_change', 'tests.helpers.test_singleton', 'homeassistant.helpers.start', 'tests.helpers.test_start', 'homeassistant.helpers.state', 'tests.helpers.test_state', 'tests.helpers.test_storage', 'tests.helpers.test_storage_remove', 'tests.helpers.test_sun', 'tests.helpers.test_system_info', 'tests.helpers.test_temperature', 'homeassistant.components.group', 'tests.helpers.test_template', 'homeassistant.generated.config_flows', 'homeassistant.helpers.translation', 'tests.helpers.test_translation', 'tests.helpers.test_trigger', 'tests.helpers.test_update_coordinator', 'tests.scripts', 'homeassistant.scripts', 'homeassistant.scripts.auth', 'tests.scripts.test_auth', 'homeassistant.scripts.check_config', 'tests.scripts.test_check_config', 'tests.scripts.test_init', 'tests.test_util.test_aiohttp', 'tests.util', 'homeassistant.util.aiohttp', 'tests.util.test_aiohttp', 'tests.util.test_async', 'tests.util.test_color', 'tests.util.test_distance', 'tests.util.test_dt', 'tests.util.test_executor', 'tests.util.test_init', 'tests.util.test_json', 'tests.util.test_location', 'tests.util.test_logging', 'tests.util.test_network', 'tests.util.test_package', 'homeassistant.util.percentage', 'tests.util.test_percentage', 'tests.util.test_pressure', 'homeassistant.util.process', 'tests.util.test_process', 'ruamel', 'ruamel.yaml.compat', 'ruamel.yaml.error', 'ruamel.yaml.util', 'ruamel.yaml.reader', 'ruamel.yaml.tokens', 'ruamel.yaml.scanner', 'ruamel.yaml.events', 'ruamel.yaml.anchor', 'ruamel.yaml.scalarstring', 'ruamel.yaml.comments', 'ruamel.yaml.parser', 'ruamel.yaml.nodes', 'ruamel.yaml.composer', 'ruamel.yaml.scalarint', 'ruamel.yaml.scalarfloat', 'ruamel.yaml.scalarbool', 'ruamel.yaml.timestamp', 'ruamel.yaml.constructor', 'ruamel.yaml.emitter', 'ruamel.yaml.serializer', 'ruamel.yaml.representer', '_ruamel_yaml', 'ruamel.yaml.resolver', 'ruamel.yaml.cyaml', 'ruamel.yaml.loader', 'ruamel.yaml.dumper', 'ruamel.yaml.main', 'ruamel.yaml', 'homeassistant.util.ruamel_yaml', 'tests.util.test_ruamel_yaml', 'tests.util.test_temperature', 'tests.util.test_thread', 'tests.util.test_timeout', 'tests.util.test_unit_system', 'tests.util.test_uuid', 'tests.util.test_volume', 'tests.util.yaml', 'tests.util.yaml.test_init', 'tests.util.yaml.test_input', 'tests.components.default_config', 'tests.components.blueprint', 'tests.components.blueprint.conftest', 'tests.components.default_config.test_init', 'tests.components.hue.test_bridge', 'aiohue.discovery', 'async_upnp_client.utils', 'async_upnp_client.ssdp', 'async_upnp_client.advertisement', 'xml.sax.handler', 'xml.sax._exceptions', 'xml.sax.xmlreader', 'xml.sax', 'xml.sax.saxutils', 'defusedxml.common', 'defusedxml', '_elementtree', 'xml.etree.ElementTree', 'defusedxml.ElementTree', 'async_upnp_client.const', 'async_upnp_client.exceptions', 'async_upnp_client.client', 'async_upnp_client.client_factory', 'async_upnp_client.event_handler', 'async_upnp_client', 'async_upnp_client.search', 'homeassistant.components.network.const', 'homeassistant.components.network.models', 'ifaddr._shared', 'ctypes.util', 'ifaddr._posix', 'ifaddr', 'homeassistant.components.network.util', 'homeassistant.components.network.network', 'homeassistant.components.network', 'homeassistant.components.ssdp.util', 'homeassistant.components.ssdp.descriptions', 'homeassistant.components.ssdp.flow', 'homeassistant.components.ssdp', 'homeassistant.components.hue.config_flow', 'tests.components.hue.test_config_flow', 'homeassistant.components.homeassistant', 'homeassistant.components.homeassistant.triggers', 'homeassistant.components.homeassistant.triggers.event', 'homeassistant.components.hue.device_trigger', 'tests.components.hue.test_sensor_base', 'tests.components.hue.test_device_trigger', 'tests.components.hue.test_init', 'tests.components.hue.test_init_multiple_bridges', 'tests.components.hue.test_light', 'tests.components.recorder.test_history', 'tests.components.recorder.test_init', 'tests.components.recorder.models_original', 'tests.components.recorder.test_migrate', 'tests.components.recorder.test_models', 'tests.components.recorder.test_pool', 'tests.components.recorder.test_purge', 'tests.components.recorder.test_statistics', 'tests.components.recorder.test_util', 'zeroconf._exceptions', 'zeroconf._utils', 'zeroconf._logger', 'zeroconf.const', 'zeroconf._utils.net', 'zeroconf._utils.time', 'zeroconf._dns', 'zeroconf._cache', 'zeroconf._history', 'zeroconf._utils.struct', 'zeroconf._protocol', 'zeroconf._services', 'zeroconf._updates', 'zeroconf._utils.asyncio', 'zeroconf._utils.name', 'zeroconf._services.info', 'zeroconf._services.registry', 'zeroconf._handlers', 'zeroconf._services.browser', 'zeroconf._core', 'zeroconf._services.types', 'zeroconf', 'zeroconf.asyncio', 'homeassistant.components.zeroconf.models', 'homeassistant.components.zeroconf.usage', 'homeassistant.components.zeroconf', 'tests.components.zeroconf.test_init', 'tests.components.zeroconf.test_usage', 'custom_components', 'custom_components.test_package.const', 'custom_components.test_package', 'custom_components.test', 'custom_components.test.light', 'custom_components.test_embedded', 'custom_components.test_embedded.switch', 'homeassistant.components.switch', 'aiohttp_cors.__about__', 'aiohttp_cors.resource_options', 'aiohttp_cors.abc', 'aiohttp_cors.preflight_handler', 'aiohttp_cors.mixin', 'aiohttp_cors.urldispatcher_router_adapter', 'aiohttp_cors.cors_config', 'aiohttp_cors', 'astral.moon', 'astral.location', 'homeassistant.components.input_datetime', 'homeassistant.components.input_text', 'homeassistant.components.input_select', 'jinja2.debug', 'homeassistant.components.input_number', 'homeassistant.components.homeassistant.trigger', 'homeassistant.components.updater', 'homeassistant.components.counter', 'homeassistant.components.dhcp', 'dns.version', 'dns', 'dns.exception', 'dns._immutable_ctx', 'dns.immutable', 'dns.name', 'dns.wire', 'dns.enum', 'dns.ipv4', 'dns.ipv6', 'dns.inet', 'dns.rdataclass', 'dns.rdatatype', 'dns.ttl', 'dns.tokenizer', 'dns.rdata', 'dns.edns', 'dns.flags', 'dns.opcode', 'dns.entropy', 'dns.rcode', 'dns.set', 'dns.rdataset', 'dns.tsig', 'dns.renderer', 'dns.rrset', 'dns.rdtypes', 'dns.rdtypes.ANY', 'dns.rdtypes.ANY.OPT', 'dns.rdtypes.ANY.TSIG', 'dns.message', 'pr2modules', 'multiprocessing.process', 'multiprocessing.reduction', 'multiprocessing.context', '__mp_main__', 'multiprocessing', 'pr2modules.config', 'pr2modules.config.version', 'pr2modules.config.log', 'pr2modules.common', 'pr2modules.netlink.exceptions', 'pr2modules.netlink', 'pr2modules.netlink.nlsocket', 'pr2modules.netlink.generic', 'pr2modules.netlink.event', 'pr2modules.netlink.event.acpi_event', 'pr2modules.netlink.event.dquot', 'pr2modules.netlink.devlink', 'pr2modules.netlink.diag', 'pr2modules.netlink.rtnl', 'pr2modules.netlink.rtnl.iw_event', 'pr2modules.netlink.rtnl.ifinfmsg.plugins', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.bond', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.geneve', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.gtp', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.ipvlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.team', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.tuntap', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.tun', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vrf', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vti', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vti6', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.vxlan', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.xfrm', 'pr2modules.netlink.rtnl.ifinfmsg.plugins.ipoib', 'pr2modules.netlink.rtnl.ifinfmsg', 'pr2modules.netlink.rtnl.rtmsg', 'pr2modules.netlink.rtnl.fibmsg', 'pr2modules.netlink.rtnl.req', 'pr2modules.netlink.ipq', 'pr2modules.proxy', 'pr2modules.protocols', 'pr2modules.netlink.rtnl.tcmsg.common', 'pr2modules.netlink.rtnl.tcmsg.act_police', 'pr2modules.netlink.rtnl.tcmsg.act_gact', 'pr2modules.netlink.rtnl.tcmsg.act_bpf', 'pr2modules.netlink.rtnl.tcmsg.act_mirred', 'pr2modules.netlink.rtnl.tcmsg.act_connmark', 'pr2modules.netlink.rtnl.tcmsg.act_vlan', 'pr2modules.netlink.rtnl.tcmsg.act_skbedit', 'pr2modules.netlink.rtnl.tcmsg.common_act', 'pr2modules.netlink.rtnl.tcmsg.cls_fw', 'pr2modules.netlink.rtnl.tcmsg.cls_u32', 'pr2modules.netlink.rtnl.tcmsg.cls_matchall', 'pr2modules.netlink.rtnl.tcmsg.em_cmp', 'pr2modules.netlink.rtnl.tcmsg.em_ipset', 'pr2modules.netlink.rtnl.tcmsg.em_meta', 'pr2modules.netlink.rtnl.tcmsg.common_ematch', 'pr2modules.netlink.rtnl.tcmsg.cls_basic', 'pr2modules.netlink.rtnl.tcmsg.cls_flow', 'pr2modules.netlink.rtnl.tcmsg.sched_bpf', 'pr2modules.netlink.rtnl.tcmsg.sched_cake', 'pr2modules.netlink.rtnl.tcmsg.sched_choke', 'pr2modules.netlink.rtnl.tcmsg.sched_clsact', 'pr2modules.netlink.rtnl.tcmsg.sched_codel', 'pr2modules.netlink.rtnl.tcmsg.sched_drr', 'pr2modules.netlink.rtnl.tcmsg.sched_fq_codel', 'pr2modules.netlink.rtnl.tcmsg.sched_hfsc', 'pr2modules.netlink.rtnl.tcmsg.sched_htb', 'pr2modules.netlink.rtnl.tcmsg.sched_ingress', 'pr2modules.netlink.rtnl.tcmsg.sched_netem', 'pr2modules.netlink.rtnl.tcmsg.sched_pfifo', 'pr2modules.netlink.rtnl.tcmsg.sched_pfifo_fast', 'pr2modules.netlink.rtnl.tcmsg.sched_plug', 'pr2modules.netlink.rtnl.tcmsg.sched_sfq', 'pr2modules.netlink.rtnl.tcmsg.sched_tbf', 'pr2modules.netlink.rtnl.tcmsg.sched_template', 'pr2modules.netlink.rtnl.tcmsg', 'pr2modules.netlink.rtnl.ndmsg', 'pr2modules.netlink.rtnl.ndtmsg', 'pr2modules.netlink.rtnl.rtgenmsg', 'pr2modules.netlink.rtnl.nsidmsg', 'pr2modules.netlink.rtnl.ifaddrmsg', 'pr2modules.netlink.rtnl.ifstatsmsg', 'pr2modules.netlink.rtnl.marshal', 'pr2modules.netlink.rtnl.riprsocket', 'pr2modules.netlink.rtnl.ifinfmsg.sync', 'pr2modules.netlink.rtnl.ifinfmsg.tuntap', 'pr2modules.netlink.rtnl.ifinfmsg.proxy', 'pr2modules.netlink.rtnl.iprsocket', 'pr2modules.netlink.rtnl.nsinfmsg', 'pr2modules.iproute.linux', 'pr2modules.iproute', 'pr2modules.netlink.generic.l2tp', 'pr2modules.netlink.generic.mptcp', 'pr2modules.netlink.nfnetlink', 'pr2modules.netlink.nfnetlink.nfctsocket', 'pr2modules.netlink.nfnetlink.nftsocket', 'pr2modules.netlink.nl80211', 'pr2modules.netlink.taskstats', 'pr2modules.netlink.uevent', 'pr2modules.netlink.generic.wireguard', 'pr2modules.bsd', 'pr2modules.iwutil', 'pr2modules.netns', 'pr2modules.netlink.generic.ethtool', 'pr2modules.ethtool.common', 'pr2modules.ethtool.ioctl', 'pr2modules.ethtool.ethtool', 'pr2modules.ethtool', 'pr2modules.ipdb', 'pr2modules.ipdb.exceptions', 'pr2modules.ipdb.linkedset', 'pr2modules.ipdb.transactional', 'pr2modules.ipdb.rules', 'pr2modules.ipdb.routes', 'pr2modules.ipdb.interfaces', 'pr2modules.ipdb.utils', 'pr2modules.ipdb.main', 'pr2modules.netlink.nfnetlink.ipset', 'pr2modules.ipset', 'pr2modules.wiset', 'pr2modules.cli', 'pr2modules.ndb', 'pr2modules.ndb.report', 'pr2modules.ndb.auth_manager', 'pr2modules.ndb.events', 'pr2modules.ndb.objects', 'pr2modules.ndb.objects.address', 'pr2modules.netlink.rtnl.p2pmsg', 'pr2modules.ndb.objects.interface', 'pr2modules.ndb.objects.neighbour', 'pr2modules.ndb.objects.netns', 'pr2modules.ndb.objects.route', 'pr2modules.ndb.objects.rule', 'pr2modules.ndb.messages', 'pr2modules.ndb.schema', 'mitogen', 'pstats', 'imp', '_lsprof', 'profile', 'cProfile', 'mitogen.core', 'mitogen.minify', 'mitogen.parent', '_sysconfigdata__linux_x86_64-linux-gnu', 'mitogen.master', 'pr2modules.remote.transport', 'pr2modules.remote.iproute', 'pr2modules.remote', 'pr2modules.inotify', 'pr2modules.inotify.inotify_msg', 'pr2modules.inotify.inotify_fd', 'pr2modules.netns.manager', 'pr2modules.nslink', 'pr2modules.nslink.nslink', 'pr2modules.ndb.source', 'pr2modules.ndb.main', 'pr2modules.cli.parser', 'pr2modules.cli.session', 'readline', 'pr2modules.cli.console', 'pr2modules.ndb.noipdb', 'pr2modules.cli.server', 'pr2modules.nftables', 'pr2modules.nftables.main', 'pr2modules.nslink.nspopen', 'pyroute2', 'aiodiscover.network', 'aiodiscover.discovery', 'aiodiscover', 'scapy', 'scapy.arch', 'gzip', 'scapy.modules', 'scapy.modules.six', 'scapy.compat', 'scapy.consts', 'scapy.error', 'scapy.modules.six.moves', 'scapy.base_classes', 'scapy.themes', 'scapy.config', 'scapy.dadict', 'scapy.libs', 'scapy.libs.ethertypes', 'scapy.data', 'scapy.pton_ntop', 'scapy.utils', 'scapy.volatile', 'scapy.utils6', 'scapy.interfaces', 'scapy.arch.linux', 'scapy.libs.structures', 'scapy.arch.common', 'scapy.packet', 'scapy.fields', 'scapy.extlib', 'matplotlib', 'matplotlib._api.deprecation', 'matplotlib._api', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core._multiarray_umath', 'numpy.compat._inspect', 'numpy.compat.py3k', 'numpy.compat', 'numpy.core.overrides', 'numpy.core.multiarray', 'numpy.core.umath', 'numpy.core._string_helpers', 'numpy.core._dtype', 'numpy.core._type_aliases', 'numpy.core.numerictypes', 'numpy.core._asarray', 'numpy.core._exceptions', 'numpy.core._methods', 'numpy.core.fromnumeric', 'numpy.core.shape_base', 'numpy.core._ufunc_config', 'numpy.core.arrayprint', 'numpy.core.numeric', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.einsumfunc', 'numpy.core._multiarray_tests', 'numpy.core._add_newdocs', 'numpy.core._add_newdocs_scalars', 'numpy.core._dtype_ctypes', 'numpy.core._internal', 'numpy._pytesttester', 'numpy.core', 'numpy.lib.mixins', 'numpy.lib.ufunclike', 'numpy.lib.type_check', 'numpy.lib.scimath', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.linalg.linalg', 'numpy.linalg', 'numpy.matrixlib.defmatrix', 'numpy.matrixlib', 'numpy.lib.histograms', 'numpy.lib.function_base', 'numpy.lib.stride_tricks', 'numpy.lib.index_tricks', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.format', 'numpy.lib._datasource', 'numpy.lib._iotools', 'numpy.lib.npyio', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.lib', 'numpy.fft._pocketfft_internal', 'numpy.fft._pocketfft', 'numpy.fft.helper', 'numpy.fft', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.polynomial', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.polynomial', '_cython_0_29_22', 'numpy.random._common', 'numpy.random.bit_generator', 'numpy.random._bounded_integers', 'numpy.random._mt19937', 'numpy.random.mtrand', 'numpy.random._philox', 'numpy.random._pcg64', 'numpy.random._sfc64', 'numpy.random._generator', 'numpy.random._pickle', 'numpy.random', 'numpy.ctypeslib', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.ma', 'numpy', 'matplotlib._c_internal_utils', 'matplotlib.cbook', 'matplotlib.docstring', 'PIL._version', 'PIL', 'PIL.ImageMode', 'PIL.TiffTags', 'PIL._binary', 'PIL._util', 'PIL._imaging', 'cffi.lock', 'cffi.error', 'cffi.model', 'cffi.api', 'cffi', 'PIL.Image', 'matplotlib._animation_data', 'matplotlib.animation', 'PIL.ImageChops', 'PIL.ImageFile', 'PIL.GimpGradientFile', 'PIL.GimpPaletteFile', 'PIL.ImageColor', 'PIL.PaletteFile', 'PIL.ImagePalette', 'PIL.ImageSequence', 'PIL.PngImagePlugin', 'matplotlib._path', 'matplotlib.bezier', 'matplotlib.path', 'matplotlib.transforms', 'matplotlib.ticker', 'matplotlib.scale', 'matplotlib._color_data', 'matplotlib.colors', 'pyparsing', 'matplotlib.fontconfig_pattern', 'matplotlib._enums', 'cycler', 'matplotlib.rcsetup', 'matplotlib._version', 'matplotlib.ft2font', 'kiwisolver', 'dateutil.rrule', 'matplotlib.units', 'matplotlib.dates']
DEBUG matplotlib:__init__.py:224 CACHEDIR=/build/.cache/matplotlib
DEBUG matplotlib.font_manager:font_manager.py:1049 font search path [PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf'), PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/afm'), PosixPath('/nix/store/xh0wg7w7q0n0yyihvyssvmg24mhhl5dm-python3.8-matplotlib-3.4.2/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts')]
INFO matplotlib.font_manager:font_manager.py:1443 generated new fontManager
DEBUG matplotlib.pyplot:pyplot.py:290 Loaded backend agg version unknown.
DEBUG matplotlib.pyplot:pyplot.py:290 Loaded backend agg version unknown.
INFO homeassistant.setup:setup.py:218 Setting up dhcp
INFO homeassistant.setup:setup.py:266 Setup of domain dhcp took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency frontend will wait for dependencies ['api', 'auth', 'config', 'device_automation', 'http', 'lovelace', 'onboarding', 'search', 'system_log', 'websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency history will wait for dependencies ['http', 'recorder']
INFO homeassistant.setup:setup.py:218 Setting up input_boolean
INFO homeassistant.setup:setup.py:218 Setting up input_datetime
INFO homeassistant.setup:setup.py:218 Setting up input_number
INFO homeassistant.setup:setup.py:218 Setting up input_select
INFO homeassistant.setup:setup.py:218 Setting up input_text
DEBUG homeassistant.setup:setup.py:131 Dependency logbook will wait for dependencies ['frontend', 'http', 'recorder']
DEBUG homeassistant.setup:setup.py:131 Dependency map will wait for dependencies ['frontend']
DEBUG homeassistant.setup:setup.py:131 Dependency media_source will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency mobile_app will wait for dependencies ['http', 'webhook', 'person', 'tag', 'websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency my will wait for dependencies ['frontend']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency person will wait for dependencies ['image']
INFO homeassistant.setup:setup.py:218 Setting up scene
DEBUG homeassistant.setup:setup.py:131 Dependency script will wait for dependencies ['blueprint', 'trace']
DEBUG homeassistant.setup:setup.py:131 Dependency ssdp will wait for dependencies ['network']
INFO homeassistant.setup:setup.py:218 Setting up sun
DEBUG homeassistant.components.sun:__init__.py:209 sun phase_update@2021-07-13T00:36:44.255633+00:00: phase=day
DEBUG homeassistant.components.sun:__init__.py:232 sun position_update@2021-07-13T00:36:44.256285+00:00: elevation=27.53 azimuth=279.35
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=sun.sun, old_state=None, new_state=<state sun.sun=above_horizon; next_dawn=2021-07-13T12:22:09.432484+00:00, next_dusk=2021-07-13T03:27:26.222824+00:00, next_midnight=2021-07-13T07:54:45+00:00, next_noon=2021-07-13T19:54:39+00:00, next_rising=2021-07-13T12:50:46.993913+00:00, next_setting=2021-07-13T02:58:48.813963+00:00, elevation=27.53, azimuth=279.35, rising=False, friendly_name=Sun @ 2021-07-13T00:36:44.256466+00:00>>
DEBUG homeassistant.components.sun:__init__.py:218 next time: 2021-07-13T02:03:21.157605+00:00
INFO homeassistant.setup:setup.py:266 Setup of domain sun took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency system_health will wait for dependencies ['http']
INFO homeassistant.loader:loader.py:349 Loaded homeassistant from homeassistant.components.homeassistant
INFO homeassistant.setup:setup.py:218 Setting up tag
INFO homeassistant.setup:setup.py:218 Setting up timer
INFO homeassistant.setup:setup.py:218 Setting up updater
INFO homeassistant.setup:setup.py:266 Setup of domain updater took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency webhook will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
INFO homeassistant.setup:setup.py:218 Setting up zone
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=dhcp>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=sun>
ERROR homeassistant.components.updater:update_coordinator.py:246 Unexpected error fetching Home Assistant update data: not enough values to unpack (expected 2, got 0)
Traceback (most recent call last):
File "/build/source/homeassistant/helpers/update_coordinator.py", line 187, in _async_refresh
self.data = await self._async_update_data()
File "/build/source/homeassistant/helpers/update_coordinator.py", line 147, in _async_update_data
return await self.update_method()
File "/build/source/homeassistant/components/updater/__init__.py", line 75, in check_new_version
newest, release_notes = await get_newest_version(hass)
ValueError: not enough values to unpack (expected 2, got 0)
DEBUG homeassistant.components.updater:update_coordinator.py:256 Finished fetching Home Assistant update data in 0.002 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=updater>
INFO homeassistant.setup:setup.py:218 Setting up blueprint
INFO homeassistant.setup:setup.py:266 Setup of domain blueprint took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up trace
INFO homeassistant.setup:setup.py:266 Setup of domain trace took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up http
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency auth will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency config will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up device_automation
INFO homeassistant.setup:setup.py:266 Setup of domain device_automation took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up lovelace
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.setup:setup.py:131 Dependency onboarding will wait for dependencies ['analytics', 'auth', 'http', 'person']
DEBUG homeassistant.setup:setup.py:131 Dependency search will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency system_log will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up recorder
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=recorder, service=purge>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=recorder, service=purge_entities>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=recorder, service=enable>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=recorder, service=disable>
DEBUG homeassistant.setup:setup.py:131 Dependency image will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:266 Setup of domain tag took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=blueprint>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=trace>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=device_automation>
INFO homeassistant.loader:loader.py:349 Loaded binary_sensor from homeassistant.components.binary_sensor
INFO homeassistant.setup:setup.py:218 Setting up homeassistant
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=toggle>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=stop>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=restart>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=check_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=update_entity>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_core_config>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=set_location>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=homeassistant, service=reload_config_entry>
INFO homeassistant.setup:setup.py:266 Setup of domain homeassistant took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=tag>
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.1 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain lovelace took 0.0 seconds
DEBUG homeassistant.setup:setup.py:131 Dependency analytics will wait for dependencies ['api', 'websocket_api']
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=homeassistant>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=counter, service=increment>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=counter, service=decrement>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=counter, service=reset>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=counter, service=configure>
INFO homeassistant.setup:setup.py:266 Setup of domain counter took 1.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=lovelace>
INFO homeassistant.setup:setup.py:218 Setting up binary_sensor
INFO homeassistant.setup:setup.py:266 Setup of domain binary_sensor took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_boolean, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_boolean, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_boolean, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_boolean, service=toggle>
INFO homeassistant.setup:setup.py:266 Setup of domain input_boolean took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_datetime, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_datetime, service=set_datetime>
INFO homeassistant.setup:setup.py:266 Setup of domain input_datetime took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_number, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_number, service=set_value>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_number, service=increment>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_number, service=decrement>
INFO homeassistant.setup:setup.py:266 Setup of domain input_number took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_option>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_next>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_previous>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_first>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=select_last>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_select, service=set_options>
INFO homeassistant.setup:setup.py:266 Setup of domain input_select took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_text, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=input_text, service=set_value>
INFO homeassistant.setup:setup.py:266 Setup of domain input_text took 0.1 seconds
INFO homeassistant.components.scene:entity_platform.py:236 Setting up scene.homeassistant
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=start>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=pause>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=cancel>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=timer, service=finish>
INFO homeassistant.setup:setup.py:266 Setup of domain timer took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=zone, service=reload>
INFO homeassistant.setup:setup.py:218 Setting up automation
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=trigger>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=toggle>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=automation, service=reload>
INFO homeassistant.setup:setup.py:266 Setup of domain automation took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up script
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=script, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=script, service=turn_on>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=script, service=turn_off>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=script, service=toggle>
INFO homeassistant.setup:setup.py:266 Setup of domain script took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=counter>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=binary_sensor>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_boolean>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_datetime>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_number>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_select>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=input_text>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=scene, service=reload>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=scene, service=apply>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=scene, service=create>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=timer>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=zone.home, old_state=None, new_state=<state zone.home=zoning; latitude=32.87336, longitude=-117.22743, radius=100, passive=False, editable=True, friendly_name=test home, icon=mdi:home @ 2021-07-13T00:36:44.401101+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=automation>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=script>
INFO sqlalchemy.engine.Engine:base.py:136 BEGIN (implicit)
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("events")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("events")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("states")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("states")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("statistics")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("statistics")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("statistics_meta")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("statistics_meta")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("recorder_runs")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("recorder_runs")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO homeassistant.setup:setup.py:218 Setting up media_source
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.table_info("schema_changes")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA temp.table_info("schema_changes")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO homeassistant.setup:setup.py:218 Setting up system_health
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE events (
event_id INTEGER NOT NULL,
event_type VARCHAR(64),
event_data TEXT,
origin VARCHAR(32),
time_fired DATETIME,
created DATETIME,
context_id VARCHAR(36),
context_user_id VARCHAR(36),
context_parent_id VARCHAR(36),
PRIMARY KEY (event_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00020s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_event_type_time_fired ON events (event_type, time_fired)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00016s] ()
INFO homeassistant.setup:setup.py:218 Setting up webhook
INFO homeassistant.setup:setup.py:266 Setup of domain webhook took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_context_parent_id ON events (context_parent_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00014s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_time_fired ON events (time_fired)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00011s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_context_id ON events (context_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00012s] ()
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_events_context_user_id ON events (context_user_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00015s] ()
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE statistics (
id INTEGER NOT NULL,
created DATETIME,
source VARCHAR(32),
statistic_id VARCHAR(255),
start DATETIME,
mean FLOAT,
min FLOAT,
max FLOAT,
last_reset DATETIME,
state FLOAT,
sum FLOAT,
PRIMARY KEY (id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00013s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_statistics_start ON statistics (start)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00013s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_statistics_statistic_id_start ON statistics (statistic_id, start)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00012s] ()
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE statistics_meta (
statistic_id VARCHAR(255) NOT NULL,
source VARCHAR(32),
unit_of_measurement VARCHAR(255),
PRIMARY KEY (statistic_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00014s] ()
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE recorder_runs (
run_id INTEGER NOT NULL,
start DATETIME,
"end" DATETIME,
closed_incorrect BOOLEAN,
created DATETIME,
PRIMARY KEY (run_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00017s] ()
INFO homeassistant.setup:setup.py:218 Setting up auth
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_recorder_runs_start_end ON recorder_runs (start, "end")
INFO homeassistant.setup:setup.py:266 Setup of domain auth took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00094s] ()
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE schema_changes (
change_id INTEGER NOT NULL,
schema_version INTEGER,
changed DATETIME,
PRIMARY KEY (change_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00011s] ()
INFO homeassistant.setup:setup.py:218 Setting up config
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO sqlalchemy.engine.Engine:base.py:136
CREATE TABLE states (
state_id INTEGER NOT NULL,
domain VARCHAR(64),
entity_id VARCHAR(255),
state VARCHAR(255),
attributes TEXT,
event_id INTEGER,
last_changed DATETIME,
last_updated DATETIME,
created DATETIME,
old_state_id INTEGER,
PRIMARY KEY (state_id),
FOREIGN KEY(event_id) REFERENCES events (event_id) ON DELETE CASCADE,
FOREIGN KEY(old_state_id) REFERENCES states (state_id)
)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00014s] ()
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_states_last_updated ON states (last_updated)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00015s] ()
INFO homeassistant.setup:setup.py:218 Setting up system_log
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_states_event_id ON states (event_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00012s] ()
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=clear>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=system_log, service=write>
INFO homeassistant.setup:setup.py:266 Setup of domain system_log took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_states_entity_id_last_updated ON states (entity_id, last_updated)
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00020s] ()
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
INFO sqlalchemy.engine.Engine:base.py:136 CREATE INDEX ix_states_old_state_id ON states (old_state_id)
INFO sqlalchemy.engine.Engine:base.py:136 [no key 0.00010s] ()
INFO sqlalchemy.engine.Engine:base.py:136 COMMIT
DEBUG homeassistant.components.recorder:__init__.py:941 Connected to recorder database
INFO sqlalchemy.engine.Engine:base.py:136 BEGIN (implicit)
INFO sqlalchemy.engine.Engine:base.py:136 SELECT schema_changes.change_id AS schema_changes_change_id, schema_changes.schema_version AS schema_changes_schema_version, schema_changes.changed AS schema_changes_changed
FROM schema_changes ORDER BY schema_changes.change_id DESC
LIMIT ? OFFSET ?
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00022s] (1, 0)
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_list("events")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO homeassistant.setup:setup.py:218 Setting up image
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_context_user_id")
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=scene, service=turn_on>
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO homeassistant.setup:setup.py:266 Setup of domain scene took 0.2 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain zone took 0.2 seconds
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_context_id")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_time_fired")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_context_parent_id")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
INFO sqlalchemy.engine.Engine:base.py:136 PRAGMA main.index_info("ix_events_event_type_time_fired")
INFO sqlalchemy.engine.Engine:base.py:136 [raw sql] ()
DEBUG homeassistant.components.recorder.migration:migration.py:43 No schema version found. Inspected version: 17
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO schema_changes (schema_version, changed) VALUES (?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00119s] (17, '2021-07-13 00:36:44.458554')
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=webhook>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=auth>
INFO sqlalchemy.engine.Engine:base.py:136 COMMIT
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.area_registry>
INFO sqlalchemy.engine.Engine:base.py:136 BEGIN (implicit)
INFO sqlalchemy.engine.Engine:base.py:136 SELECT recorder_runs.run_id AS recorder_runs_run_id, recorder_runs.start AS recorder_runs_start, recorder_runs."end" AS recorder_runs_end, recorder_runs.closed_incorrect AS recorder_runs_closed_incorrect, recorder_runs.created AS recorder_runs_created
FROM recorder_runs
WHERE recorder_runs."end" IS NULL
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00029s] ()
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.auth_provider_homeassistant>
INFO sqlalchemy.engine.Engine:base.py:136 INSERT INTO recorder_runs (start, "end", closed_incorrect, created) VALUES (?, ?, ?, ?)
INFO sqlalchemy.engine.Engine:base.py:136 [generated in 0.00032s] ('2021-07-13 00:36:44.360145', None, 0, '2021-07-13 00:36:44.467812')
INFO sqlalchemy.engine.Engine:base.py:136 COMMIT
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.automation>
DEBUG homeassistant.components.recorder:__init__.py:612 Recorder processing the queue
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.config_entries>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.core>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.customize>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.device_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.entity_registry>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.group>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.script>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config.scene>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=system_log>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.components.binary_sensor:entity_platform.py:236 Setting up binary_sensor.updater
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=scene>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=zone>
INFO homeassistant.setup:setup.py:266 Setup of domain image took 0.0 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain media_source took 0.1 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain system_health took 0.1 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain config took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=image>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=media_source>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=system_health>
ERROR homeassistant.setup:setup.py:173 Setup failed for cloud: Unable to import component: No module named 'av'
INFO homeassistant.setup:setup.py:266 Setup of domain recorder took 0.1 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=config>
INFO homeassistant.setup:setup.py:218 Setting up network
INFO homeassistant.setup:setup.py:218 Setting up search
INFO homeassistant.setup:setup.py:266 Setup of domain search took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up analytics
INFO homeassistant.helpers.entity_registry:entity_registry.py:309 Registered new binary_sensor.updater entity: binary_sensor.updater
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=binary_sensor.updater>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event state_changed[L]: entity_id=binary_sensor.updater, old_state=None, new_state=<state binary_sensor.updater=unavailable; friendly_name=Updater @ 2021-07-13T00:36:44.513365+00:00>>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=recorder>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=search>
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
INFO homeassistant.setup:setup.py:266 Setup of domain analytics took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up person
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=analytics>
INFO homeassistant.setup:setup.py:218 Setting up history
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain history took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=history>
INFO homeassistant.setup:setup.py:218 Setting up ssdp
INFO homeassistant.setup:setup.py:266 Setup of domain ssdp took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=ssdp>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=person, service=reload>
INFO homeassistant.setup:setup.py:266 Setup of domain person took 0.0 seconds
DEBUG async_upnp_client.ssdp:ssdp.py:208 Creating socket on (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('0.0.0.0', 0)) to (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_DGRAM: 2>, 17, '', ('239.255.255.250', 1900))
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=person>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/components/ssdp/__init__.py", line 244, in async_start
await asyncio.gather(
File "/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/search.py", line 91, in async_start
sock, source, self._target = get_ssdp_socket(self.source_ip, self.target_ip)
File "/nix/store/pvibvag7n3a6l283a1xz27nhislamnx8-python3.8-async-upnp-client-0.19.0/lib/python3.8/site-packages/async_upnp_client/ssdp.py", line 228, in get_ssdp_socket
sock.setsockopt(
OSError: [Errno 19] No such device
ERROR homeassistant.setup:setup.py:173 Setup failed for mobile_app: Unable to import component: No module named 'av'
INFO homeassistant.setup:setup.py:218 Setting up onboarding
INFO homeassistant.setup:setup.py:266 Setup of domain onboarding took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=onboarding>
INFO homeassistant.setup:setup.py:218 Setting up frontend
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=set_theme>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=frontend, service=reload_themes>
INFO homeassistant.setup:setup.py:266 Setup of domain frontend took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=frontend>
INFO homeassistant.setup:setup.py:218 Setting up logbook
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event service_registered[L]: domain=logbook, service=log>
INFO homeassistant.setup:setup.py:218 Setting up map
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain map took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up my
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event panels_updated[L]>
INFO homeassistant.setup:setup.py:266 Setup of domain my took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=map>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=my>
INFO homeassistant.setup:setup.py:266 Setup of domain logbook took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=logbook>
INFO homeassistant.components.http:__init__.py:375 Now listening on port 8123
ERROR homeassistant.setup:setup.py:153 Unable to set up dependencies of default_config. Setup failed for dependencies: cloud, mobile_app, zeroconf
ERROR homeassistant.setup:setup.py:173 Setup failed for default_config: Could not set up all dependencies.
______________________________ test_setup[pyloop] ______________________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed7157c0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737167606256'>
async def test_setup(hass, mock_async_zeroconf):
"""Test configured options for a device are loaded via config entry."""
with patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=service_update_mock
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_service_info_mock,
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed7157c0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737167606256'>
mock_config_flow = <AsyncMock name='async_init' id='140737167352256'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737167409104'>
tests/components/zeroconf/test_init.py:129: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_______________ test_setup_with_overly_long_url_and_name[pyloop] _______________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed6ca6d0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033316528'>
caplog = <_pytest.logging.LogCaptureFixture object at 0x7fffee3560d0>
async def test_setup_with_overly_long_url_and_name(hass, mock_async_zeroconf, caplog):
"""Test we still setup with long urls and names."""
with patch.object(hass.config_entries.flow, "async_init"), patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=service_update_mock
), patch(
"homeassistant.components.zeroconf.get_url",
return_value="https://this.url.is.way.too.long/very/deep/path/that/will/make/us/go/over/the/maximum/string/length/and/would/cause/zeroconf/to/fail/to/startup/because/the/key/and/value/can/only/be/255/bytes/and/this/string/is/a/bit/longer/than/the/maximum/length/that/we/allow/for/a/value",
), patch.object(
hass.config,
"location_name",
"\u00dcBER \u00dcber German Umlaut long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string long string",
), patch(
"homeassistant.components.zeroconf.AsyncServiceInfo.request",
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
caplog = <_pytest.logging.LogCaptureFixture object at 0x7fffee3560d0>
hass = <homeassistant.core.HomeAssistant object at 0x7fffed6ca6d0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033316528'>
tests/components/zeroconf/test_init.py:164: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
__________________ test_setup_with_default_interface[pyloop] ___________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed724e80>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737177077216'>
async def test_setup_with_default_interface(hass, mock_async_zeroconf):
"""Test default interface config."""
with patch.object(hass.config_entries.flow, "async_init"), patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=service_update_mock
), patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_service_info_mock,
):
> assert await async_setup_component(
hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {CONF_DEFAULT_INTERFACE: True}}
)
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed724e80>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737177077216'>
tests/components/zeroconf/test_init.py:180: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
WARNING:homeassistant.components.zeroconf:The 'default_interface' option is deprecated, please remove it from your configuration
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
WARNING homeassistant.components.zeroconf:config_validation.py:749 The 'default_interface' option is deprecated, please remove it from your configuration
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_________________ test_setup_without_default_interface[pyloop] _________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed1c5c10>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033333584'>
async def test_setup_without_default_interface(hass, mock_async_zeroconf):
"""Test without default interface config."""
with patch.object(hass.config_entries.flow, "async_init"), patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=service_update_mock
), patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_service_info_mock,
):
> assert await async_setup_component(
hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {CONF_DEFAULT_INTERFACE: False}}
)
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed1c5c10>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033333584'>
tests/components/zeroconf/test_init.py:197: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
INFO:tests.common:Writing data to core.network: {'version': 1, 'key': 'core.network', 'data': {'configured_adapters': []}}
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
WARNING:homeassistant.components.zeroconf:The 'default_interface' option is deprecated, please remove it from your configuration
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
INFO tests.common:common.py:1015 Writing data to core.network: {'version': 1, 'key': 'core.network', 'data': {'configured_adapters': []}}
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
WARNING homeassistant.components.zeroconf:config_validation.py:749 The 'default_interface' option is deprecated, please remove it from your configuration
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_______________________ test_setup_without_ipv6[pyloop] ________________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffe4e072e0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033302896'>
async def test_setup_without_ipv6(hass, mock_async_zeroconf):
"""Test without ipv6."""
with patch.object(hass.config_entries.flow, "async_init"), patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=service_update_mock
), patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_service_info_mock,
):
> assert await async_setup_component(
hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {CONF_IPV6: False}}
)
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffe4e072e0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033302896'>
tests/components/zeroconf/test_init.py:212: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
WARNING:homeassistant.components.zeroconf:The 'ipv6' option is deprecated, please remove it from your configuration
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
WARNING homeassistant.components.zeroconf:config_validation.py:749 The 'ipv6' option is deprecated, please remove it from your configuration
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_________________________ test_setup_with_ipv6[pyloop] _________________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed22db20>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171871920'>
async def test_setup_with_ipv6(hass, mock_async_zeroconf):
"""Test without ipv6."""
with patch.object(hass.config_entries.flow, "async_init"), patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=service_update_mock
), patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_service_info_mock,
):
> assert await async_setup_component(
hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {CONF_IPV6: True}}
)
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed22db20>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171871920'>
tests/components/zeroconf/test_init.py:229: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
WARNING:homeassistant.components.zeroconf:The 'ipv6' option is deprecated, please remove it from your configuration
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
WARNING homeassistant.components.zeroconf:config_validation.py:749 The 'ipv6' option is deprecated, please remove it from your configuration
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_____________________ test_setup_with_ipv6_default[pyloop] _____________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed13e3a0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737172198352'>
async def test_setup_with_ipv6_default(hass, mock_async_zeroconf):
"""Test without ipv6 as default."""
with patch.object(hass.config_entries.flow, "async_init"), patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=service_update_mock
), patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_service_info_mock,
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed13e3a0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737172198352'>
tests/components/zeroconf/test_init.py:246: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
____________________ test_zeroconf_match_macaddress[pyloop] ____________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed3f4bb0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737185103584'>
async def test_zeroconf_match_macaddress(hass, mock_async_zeroconf):
"""Test configured options for a device are loaded via config entry."""
def http_only_service_update_mock(ipv6, zeroconf, services, handlers):
"""Call service update handler."""
handlers[0](
zeroconf,
"_http._tcp.local.",
"Shelly108._http._tcp.local.",
ServiceStateChange.Added,
)
with patch.dict(
zc_gen.ZEROCONF,
{
"_http._tcp.local.": [
{"domain": "shelly", "name": "shelly*", "macaddress": "FFAADD*"}
]
},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=http_only_service_update_mock
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_zeroconf_info_mock("FFAADDCC11DD"),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed3f4bb0>
http_only_service_update_mock = <function test_zeroconf_match_macaddress.<locals>.http_only_service_update_mock at 0x7fffecef2ee0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737185103584'>
mock_config_flow = <AsyncMock name='async_init' id='140737171850816'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737176710064'>
tests/components/zeroconf/test_init.py:281: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
___________________ test_zeroconf_match_manufacturer[pyloop] ___________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffe4e07c10>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171925696'>
async def test_zeroconf_match_manufacturer(hass, mock_async_zeroconf):
"""Test configured options for a device are loaded via config entry."""
def http_only_service_update_mock(ipv6, zeroconf, services, handlers):
"""Call service update handler."""
handlers[0](
zeroconf,
"_airplay._tcp.local.",
"s1000._airplay._tcp.local.",
ServiceStateChange.Added,
)
with patch.dict(
zc_gen.ZEROCONF,
{"_airplay._tcp.local.": [{"domain": "samsungtv", "manufacturer": "samsung*"}]},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=http_only_service_update_mock
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_zeroconf_info_mock_manufacturer("Samsung Electronics"),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffe4e07c10>
http_only_service_update_mock = <function test_zeroconf_match_manufacturer.<locals>.http_only_service_update_mock at 0x7fffed099b80>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171925696'>
mock_config_flow = <AsyncMock name='async_init' id='140737171884688'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737165907904'>
tests/components/zeroconf/test_init.py:314: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_____________ test_zeroconf_match_manufacturer_not_present[pyloop] _____________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed6b0b80>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171869856'>
async def test_zeroconf_match_manufacturer_not_present(hass, mock_async_zeroconf):
"""Test matchers reject when a property is missing."""
def http_only_service_update_mock(ipv6, zeroconf, services, handlers):
"""Call service update handler."""
handlers[0](
zeroconf,
"_airplay._tcp.local.",
"s1000._airplay._tcp.local.",
ServiceStateChange.Added,
)
with patch.dict(
zc_gen.ZEROCONF,
{"_airplay._tcp.local.": [{"domain": "samsungtv", "manufacturer": "samsung*"}]},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=http_only_service_update_mock
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_zeroconf_info_mock("aabbccddeeff"),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed6b0b80>
http_only_service_update_mock = <function test_zeroconf_match_manufacturer_not_present.<locals>.http_only_service_update_mock at 0x7fffed0afe50>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171869856'>
mock_config_flow = <AsyncMock name='async_init' id='140737167415376'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737173755312'>
tests/components/zeroconf/test_init.py:347: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
________________________ test_zeroconf_no_match[pyloop] ________________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffecddb5b0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737034888672'>
async def test_zeroconf_no_match(hass, mock_async_zeroconf):
"""Test configured options for a device are loaded via config entry."""
def http_only_service_update_mock(ipv6, zeroconf, services, handlers):
"""Call service update handler."""
handlers[0](
zeroconf,
"_http._tcp.local.",
"somethingelse._http._tcp.local.",
ServiceStateChange.Added,
)
with patch.dict(
zc_gen.ZEROCONF,
{"_http._tcp.local.": [{"domain": "shelly", "name": "shelly*"}]},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=http_only_service_update_mock
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_zeroconf_info_mock("FFAADDCC11DD"),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffecddb5b0>
http_only_service_update_mock = <function test_zeroconf_no_match.<locals>.http_only_service_update_mock at 0x7fffed01a430>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737034888672'>
mock_config_flow = <AsyncMock name='async_init' id='140737177078896'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737167678144'>
tests/components/zeroconf/test_init.py:379: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_________________ test_zeroconf_no_match_manufacturer[pyloop] __________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed230190>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033255280'>
async def test_zeroconf_no_match_manufacturer(hass, mock_async_zeroconf):
"""Test configured options for a device are loaded via config entry."""
def http_only_service_update_mock(ipv6, zeroconf, services, handlers):
"""Call service update handler."""
handlers[0](
zeroconf,
"_airplay._tcp.local.",
"s1000._airplay._tcp.local.",
ServiceStateChange.Added,
)
with patch.dict(
zc_gen.ZEROCONF,
{"_airplay._tcp.local.": [{"domain": "samsungtv", "manufacturer": "samsung*"}]},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf, "HaAsyncServiceBrowser", side_effect=http_only_service_update_mock
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_zeroconf_info_mock_manufacturer("Not Samsung Electronics"),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed230190>
http_only_service_update_mock = <function test_zeroconf_no_match_manufacturer.<locals>.http_only_service_update_mock at 0x7fffe4f99f70>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033255280'>
mock_config_flow = <AsyncMock name='async_init' id='140737185283424'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737170894128'>
tests/components/zeroconf/test_init.py:411: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
___________________ test_homekit_match_partial_space[pyloop] ___________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffecc3ff40>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737165655440'>
async def test_homekit_match_partial_space(hass, mock_async_zeroconf):
"""Test configured options for a device are loaded via config entry."""
with patch.dict(
zc_gen.ZEROCONF,
{"_hap._tcp.local.": [{"domain": "homekit_controller"}]},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf,
"HaAsyncServiceBrowser",
side_effect=lambda *args, **kwargs: service_update_mock(
*args, **kwargs, limit_service="_hap._tcp.local."
),
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_homekit_info_mock("LIFX bulb", HOMEKIT_STATUS_UNPAIRED),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffecc3ff40>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737165655440'>
mock_config_flow = <AsyncMock name='async_init' id='140737173868944'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737167341696'>
tests/components/zeroconf/test_init.py:437: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
___________________ test_homekit_match_partial_dash[pyloop] ____________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffe4e07490>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171497216'>
async def test_homekit_match_partial_dash(hass, mock_async_zeroconf):
"""Test configured options for a device are loaded via config entry."""
with patch.dict(
zc_gen.ZEROCONF,
{"_hap._udp.local.": [{"domain": "homekit_controller"}]},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf,
"HaAsyncServiceBrowser",
side_effect=lambda *args, **kwargs: service_update_mock(
*args, **kwargs, limit_service="_hap._udp.local."
),
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_homekit_info_mock("Rachio-fa46ba", HOMEKIT_STATUS_UNPAIRED),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffe4e07490>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171497216'>
mock_config_flow = <AsyncMock name='async_init' id='140737171925696'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737165909488'>
tests/components/zeroconf/test_init.py:464: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
__________________ test_homekit_match_partial_fnmatch[pyloop] __________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffecdee070>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033254032'>
async def test_homekit_match_partial_fnmatch(hass, mock_async_zeroconf):
"""Test matching homekit devices with fnmatch."""
with patch.dict(
zc_gen.ZEROCONF,
{"_hap._tcp.local.": [{"domain": "homekit_controller"}]},
clear=True,
), patch.dict(zc_gen.HOMEKIT, {"YLDP*": "yeelight"}, clear=True,), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf,
"HaAsyncServiceBrowser",
side_effect=lambda *args, **kwargs: service_update_mock(
*args, **kwargs, limit_service="_hap._tcp.local."
),
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_homekit_info_mock("YLDP13YL", HOMEKIT_STATUS_UNPAIRED),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffecdee070>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737033254032'>
mock_config_flow = <AsyncMock name='async_init' id='140737171133824'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737185092128'>
tests/components/zeroconf/test_init.py:491: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_______________________ test_homekit_match_full[pyloop] ________________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed230b20>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171509552'>
async def test_homekit_match_full(hass, mock_async_zeroconf):
"""Test configured options for a device are loaded via config entry."""
with patch.dict(
zc_gen.ZEROCONF,
{"_hap._udp.local.": [{"domain": "homekit_controller"}]},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf,
"HaAsyncServiceBrowser",
side_effect=lambda *args, **kwargs: service_update_mock(
*args, **kwargs, limit_service="_hap._udp.local."
),
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_homekit_info_mock("BSB002", HOMEKIT_STATUS_UNPAIRED),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffed230b20>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737171509552'>
mock_config_flow = <AsyncMock name='async_init' id='140737176710928'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737173755792'>
tests/components/zeroconf/test_init.py:518: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
_____________________ test_homekit_already_paired[pyloop] ______________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffecc7b2b0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737179966960'>
async def test_homekit_already_paired(hass, mock_async_zeroconf):
"""Test that an already paired device is sent to homekit_controller."""
with patch.dict(
zc_gen.ZEROCONF,
{"_hap._tcp.local.": [{"domain": "homekit_controller"}]},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf,
"HaAsyncServiceBrowser",
side_effect=lambda *args, **kwargs: service_update_mock(
*args, **kwargs, limit_service="_hap._tcp.local."
),
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_homekit_info_mock("tado", HOMEKIT_STATUS_PAIRED),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffecc7b2b0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737179966960'>
mock_config_flow = <AsyncMock name='async_init' id='140737167781504'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737033283328'>
tests/components/zeroconf/test_init.py:545: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
___________________ test_multiple_zeroconf_instances[pyloop] ___________________
[gw2] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffece7af10>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737175707760'>
mock_zeroconf = <MagicMock name='HaZeroconf()' id='140737169057104'>
caplog = <_pytest.logging.LogCaptureFixture object at 0x7fffecfee880>
async def test_multiple_zeroconf_instances(
hass, mock_async_zeroconf, mock_zeroconf, caplog
):
"""Test creating multiple zeroconf throws without an integration."""
> assert await async_setup_component(hass, DOMAIN, {DOMAIN: {}})
E assert False
caplog = <_pytest.logging.LogCaptureFixture object at 0x7fffecfee880>
hass = <homeassistant.core.HomeAssistant object at 0x7fffece7af10>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737175707760'>
mock_zeroconf = <MagicMock name='HaZeroconf()' id='140737169057104'>
tests/components/zeroconf/test_usage.py:17: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
__________________ test_homekit_invalid_paring_status[pyloop] __________________
[gw0] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffe4dfb7f0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737166947328'>
async def test_homekit_invalid_paring_status(hass, mock_async_zeroconf):
"""Test that missing paring data is not sent to homekit_controller."""
with patch.dict(
zc_gen.ZEROCONF,
{"_hap._tcp.local.": [{"domain": "homekit_controller"}]},
clear=True,
), patch.object(
hass.config_entries.flow, "async_init"
) as mock_config_flow, patch.object(
zeroconf,
"HaAsyncServiceBrowser",
side_effect=lambda *args, **kwargs: service_update_mock(
*args, **kwargs, limit_service="_hap._tcp.local."
),
) as mock_service_browser, patch(
"homeassistant.components.zeroconf.AsyncServiceInfo",
side_effect=get_homekit_info_mock("tado", b"invalid"),
):
> assert await async_setup_component(hass, zeroconf.DOMAIN, {zeroconf.DOMAIN: {}})
E assert False
hass = <homeassistant.core.HomeAssistant object at 0x7fffe4dfb7f0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737166947328'>
mock_config_flow = <AsyncMock name='async_init' id='140737165901008'>
mock_service_browser = <MagicMock name='HaAsyncServiceBrowser' id='140737166467184'>
tests/components/zeroconf/test_init.py:573: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded zeroconf from homeassistant.components.zeroconf
INFO:homeassistant.loader:Loaded network from homeassistant.components.network
INFO:homeassistant.loader:Loaded websocket_api from homeassistant.components.websocket_api
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
INFO:homeassistant.loader:Loaded api from homeassistant.components.api
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.setup:Dependency network will wait for dependencies ['websocket_api']
DEBUG:homeassistant.setup:Dependency api will wait for dependencies ['http']
DEBUG:homeassistant.setup:Dependency websocket_api will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up api
INFO:homeassistant.setup:Setup of domain api took 0.0 seconds
INFO:homeassistant.setup:Setting up websocket_api
INFO:homeassistant.setup:Setup of domain websocket_api took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=api>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO:homeassistant.setup:Setting up network
DEBUG:homeassistant.components.network.util:The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG:homeassistant.components.network:Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO:homeassistant.setup:Setup of domain network took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=network>
INFO:homeassistant.setup:Setting up zeroconf
DEBUG:zeroconf:Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG:zeroconf:Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG:zeroconf:Adding '0.0.0.0' (socket 19) to multicast group
ERROR:homeassistant.setup:Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
------------------------------ Captured log call -------------------------------
INFO homeassistant.loader:loader.py:349 Loaded zeroconf from homeassistant.components.zeroconf
INFO homeassistant.loader:loader.py:349 Loaded network from homeassistant.components.network
INFO homeassistant.loader:loader.py:349 Loaded websocket_api from homeassistant.components.websocket_api
INFO homeassistant.loader:loader.py:349 Loaded http from homeassistant.components.http
INFO homeassistant.loader:loader.py:349 Loaded api from homeassistant.components.api
DEBUG homeassistant.setup:setup.py:131 Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG homeassistant.setup:setup.py:131 Dependency network will wait for dependencies ['websocket_api']
DEBUG homeassistant.setup:setup.py:131 Dependency api will wait for dependencies ['http']
DEBUG homeassistant.setup:setup.py:131 Dependency websocket_api will wait for dependencies ['http']
INFO homeassistant.setup:setup.py:218 Setting up http
INFO homeassistant.setup:setup.py:266 Setup of domain http took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=http>
INFO homeassistant.setup:setup.py:218 Setting up api
INFO homeassistant.setup:setup.py:266 Setup of domain api took 0.0 seconds
INFO homeassistant.setup:setup.py:218 Setting up websocket_api
INFO homeassistant.setup:setup.py:266 Setup of domain websocket_api took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=api>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=websocket_api>
INFO homeassistant.setup:setup.py:218 Setting up network
DEBUG homeassistant.components.network.util:util.py:152 The system could not auto detect the source ip for 224.0.0.251 on your operating system
DEBUG homeassistant.components.network:__init__.py:43 Adapters: [{'name': 'lo', 'enabled': False, 'auto': False, 'default': False, 'ipv4': [{'address': '127.0.0.1', 'network_prefix': 8}], 'ipv6': [{'address': '::1', 'flowinfo': 0, 'scope_id': 0, 'network_prefix': 128}]}]
INFO homeassistant.setup:setup.py:266 Setup of domain network took 0.0 seconds
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event component_loaded[L]: component=network>
INFO homeassistant.setup:setup.py:218 Setting up zeroconf
DEBUG zeroconf:net.py:220 Creating new socket with port 5353, ip_version IPVersion.V4Only, apple_p2p False and bind_addr ('',)
DEBUG zeroconf:net.py:245 Created socket <socket.socket fd=19, family=AddressFamily.AF_INET, type=SocketKind.SOCK_DGRAM, proto=0, laddr=('0.0.0.0', 5353)>
DEBUG zeroconf:net.py:259 Adding '0.0.0.0' (socket 19) to multicast group
ERROR homeassistant.setup:setup.py:259 Error during setup of component zeroconf
Traceback (most recent call last):
File "/build/source/homeassistant/setup.py", line 249, in _async_setup_component
result = await task
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 166, in async_setup
aio_zc = await _async_get_instance(hass, **zc_args)
File "/build/source/homeassistant/components/zeroconf/__init__.py", line 122, in _async_get_instance
zeroconf = HaZeroconf(**zcargs)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_core.py", line 367, in __init__
listen_socket, respond_sockets = create_sockets(interfaces, unicast, ip_version, apple_p2p=apple_p2p)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 336, in create_sockets
add_multicast_member(cast(socket.socket, listen_socket), i)
File "/nix/store/lwjwaaxssykzczwg40kfpqbqp7jb9srd-python3.8-zeroconf-0.32.1/lib/python3.8/site-packages/zeroconf/_utils/net.py", line 267, in add_multicast_member
listen_socket.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, _value)
OSError: [Errno 19] No such device
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
ERROR:homeassistant:Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_stop[L]>
ERROR homeassistant:runner.py:97 Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/build/source/homeassistant/core.py", line 1438, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: Unable to find service persistent_notification.create
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_final_write[L]>
DEBUG homeassistant.core:core.py:719 Bus:Handling <Event homeassistant_close[L]>
____________ test_multiple_zeroconf_instances_gives_shared[pyloop] _____________
[gw2] linux -- Python 3.8.9 /nix/store/6cfajs6lsy9b4wxp3jvyyl1g5x2pjmpr-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0x7fffed5745b0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737169017200'>
mock_zeroconf = <MagicMock name='HaZeroconf()' id='140737170980048'>
caplog = <_pytest.logging.LogCaptureFixture object at 0x7fffecf9f0d0>
async def test_multiple_zeroconf_instances_gives_shared(
hass, mock_async_zeroconf, mock_zeroconf, caplog
):
"""Test creating multiple zeroconf gives the shared instance to an integration."""
> assert await async_setup_component(hass, DOMAIN, {DOMAIN: {}})
E assert False
caplog = <_pytest.logging.LogCaptureFixture object at 0x7fffecf9f0d0>
hass = <homeassistant.core.HomeAssistant object at 0x7fffed5745b0>
mock_async_zeroconf = <MagicMock name='HaAsyncZeroconf()' id='140737169017200'>
mock_zeroconf = <MagicMock name='HaZeroconf()' id='140737170980048'>
tests/components/zeroconf/test_usage.py:33: AssertionError
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
DEBUG:homeassistant.setup:Dependency zeroconf will wait for dependencies ['network', 'api']
DEBUG:homeassistant.s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment