I installed the HACS browser_mod integration some time ago. I could never get browser_mod to appear in the HA Companion sidebar. Now, I have revisited this and still have no luck with this. I have removed and reinstalled the integration multiple times, cleared the cache of HA Companion and every other browser existing. The integration is installed in the config/custom_components folder but setting it up is not possible.
Have you checked your profile - bottom icon in side bar - and âChange the order and hide items from the sidebarâ â EDIT if itâs hidden by any chance?
Also, try another device/browser.
After install from HACS and reboot - did you add it as integration under settings - devices & services - add integration?
Yes, I have been through that on multiple devices, i.e. phone, laptop, tablet.
Not possible, âonly one instance allowedâ message appears.
The integration doesnât appear in the sidebar, it appears in the integrations list.
Installation instructions indicate opening browser mod from sidebar. Also no related âactionsâ are available.
What happens if you put âhttp://âyour HA IPâ:8123/browser-modâ in the address bar of your browser?
my mistake, going off memory from the days of old.
Check your logs for errors, if you arenât getting the services, itâs not loading the integration.
404: not found
Have you checked your logs?
It wonât be found because the integration isnât loaded, if the integration was loaded, youâd have services. Please check your logs for errors.
This is the only log entry that mentions âbrowser.â
" Home Assistant Core
2024-10-18 02:00:18.996 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration browser_mod 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"
Delete the integration from the UI integration page, and re-add it.
Otherwise, in your logs there may be a traceback error that does not contain the word âbrowserâ. If you restart HA (to clear your logs) and post the logs here from startup, we can probably point out the issue.
Out of curiosity:
@davel4wa: did you add the integration through HACS os manually?
@petro: if he deletes it from the integrations page, will this also remove a manual installed version of the integration?
deleting the integration from the integration page only removes the config entry. Does not impact the installation files.
Following this procedure:
- Deleted browser-mod from HACS store
- Restarted HA
- Error on startup due to browser-mod missing. Fixed and restarted.
- Checked logs and had the usual startup errors unrelated to browser-mod
- Reinstalled browser-mod via HACS
- Checked logs, nothing relative
- Restarted HA
- Checked logs, nothing related to browser-mod.
"2024-10-18 11:47:27.277 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration spook 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
2024-10-18 11:47:27.279 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration browser_mod 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
2024-10-18 11:47:27.281 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration var 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
2024-10-18 11:47:27.282 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration birdbuddy 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
2024-10-18 11:47:27.284 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs 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
2024-10-18 11:47:27.286 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration alexa_media 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
2024-10-18 11:47:27.287 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration awnet_local 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
2024-10-18 11:47:27.289 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration custom_templates 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
2024-10-18 11:47:40.927 ERROR (SyncWorker_1) [homeassistant.components.smtp.notify] Login not possible. Please check your setting and/or your credentials
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/smtp/notify.py", line 165, in connection_is_valid
server = self.connect()
^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/smtp/notify.py", line 158, in connect
mail.login(self.username, self.password)
File "/usr/local/lib/python3.12/smtplib.py", line 750, in login
raise last_exception
File "/usr/local/lib/python3.12/smtplib.py", line 739, in login
(code, resp) = self.auth(
^^^^^^^^^^
File "/usr/local/lib/python3.12/smtplib.py", line 662, in auth
raise SMTPAuthenticationError(code, resp)
smtplib.SMTPAuthenticationError: (535, b'5.7.139 Authentication unsuccessful, basic authentication is disabled. [BYAPR07CA0098.namprd07.prod.outlook.com 2024-10-18T19:47:40.900Z 08DCEF3B37B6A9DE]')
2024-10-18 11:47:40.941 ERROR (MainThread) [homeassistant.components.notify] Failed to initialize notification service smtp
2024-10-18 11:47:47.685 WARNING (MainThread) [homeassistant.util.loop] Detected blocking call to load_verify_locations with args (<ssl.SSLContext object at 0x7f725e8ed0>, '/usr/local/lib/python3.12/site-packages/certifi/cacert.pem', None, None) inside the event loop by custom integration 'alexa_media' at custom_components/alexa_media/__init__.py, line 341: AlexaLogin( (offender: /usr/local/lib/python3.12/ssl.py, line 708: context.load_verify_locations(cafile, capath, cadata)), please create a bug report at https://github.com/alandtse/alexa_media_player/issues
For developers, please see https://developers.home-assistant.io/docs/asyncio_blocking_operations/#load_verify_locations
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/usr/src/homeassistant/homeassistant/__main__.py", line 223, in <module>
sys.exit(main())
File "/usr/src/homeassistant/homeassistant/__main__.py", line 209, in main
exit_code = runner.run(runtime_conf)
File "/usr/src/homeassistant/homeassistant/runner.py", line 189, in run
return loop.run_until_complete(setup_and_run_hass(runtime_config))
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 674, in run_until_complete
self.run_forever()
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 641, in run_forever
self._run_once()
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 1990, in _run_once
handle._run()
File "/usr/local/lib/python3.12/asyncio/events.py", line 88, in _run
self._context.run(self._callback, *self._args)
File "/usr/src/homeassistant/homeassistant/setup.py", line 165, in async_setup_component
result = await _async_setup_component(hass, domain, config)
File "/usr/src/homeassistant/homeassistant/setup.py", line 461, in _async_setup_component
await asyncio.gather(
File "/usr/src/homeassistant/homeassistant/setup.py", line 463, in <genexpr>
create_eager_task(
File "/usr/src/homeassistant/homeassistant/util/async_.py", line 45, in create_eager_task
return Task(coro, loop=loop, name=name, eager_start=True)
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 742, in async_setup_locked
await self.async_setup(hass, integration=integration)
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 594, in async_setup
result = await component.async_setup_entry(hass, self)
File "/config/custom_components/alexa_media/__init__.py", line 341, in async_setup_entry
AlexaLogin(
2024-10-18 11:47:47.744 ERROR (MainThread) [homeassistant.components.script] Script with alias 'Close East Garage ' failed to setup sequence and has been disabled: Unknown device 'c069c32fae3a4f27a7a70cc740ecf215'
2024-10-18 11:47:47.747 ERROR (MainThread) [homeassistant.components.script] Script with alias 'Close West Garage' failed to setup sequence and has been disabled: Unknown device 'e12258a6a6ac1b825923ce5bbf213145'
2024-10-18 11:47:47.795 WARNING (MainThread) [homeassistant.util.loop] Detected blocking call to open with args (PosixPath('/config/.storage/[email protected]'),) inside the event loop by custom integration 'alexa_media' at custom_components/alexa_media/__init__.py, line 361: await login.login(cookies=await login.load_cookie()) (offender: /usr/local/lib/python3.12/site-packages/aiohttp/cookiejar.py, line 126: with file_path.open(mode="rb") as f:), please create a bug report at https://github.com/alandtse/alexa_media_player/issues
For developers, please see https://developers.home-assistant.io/docs/asyncio_blocking_operations/#open
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/usr/src/homeassistant/homeassistant/__main__.py", line 223, in <module>
sys.exit(main())
File "/usr/src/homeassistant/homeassistant/__main__.py", line 209, in main
exit_code = runner.run(runtime_conf)
File "/usr/src/homeassistant/homeassistant/runner.py", line 189, in run
return loop.run_until_complete(setup_and_run_hass(runtime_config))
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 674, in run_until_complete
self.run_forever()
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 641, in run_forever
self._run_once()
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 1990, in _run_once
handle._run()
File "/usr/local/lib/python3.12/asyncio/events.py", line 88, in _run
self._context.run(self._callback, *self._args)
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 742, in async_setup_locked
await self.async_setup(hass, integration=integration)
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 594, in async_setup
result = await component.async_setup_entry(hass, self)
File "/config/custom_components/alexa_media/__init__.py", line 361, in async_setup_entry
await login.login(cookies=await login.load_cookie())
2024-10-18 11:47:50.267 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved (None)
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/device_tracker/legacy.py", line 258, in _async_setup_integration
legacy_platforms = await async_extract_config(hass, config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/device_tracker/legacy.py", line 393, in async_extract_config
raise ValueError(
ValueError: Unable to determine type for netgear: None
2024-10-18 11:47:50.618 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for psreset @ 10.119.7.136: Error connecting to [AddrInfo(family=<AddressFamily.AF_INET: 2>, type=<SocketKind.SOCK_STREAM: 1>, proto=6, sockaddr=IPv4Sockaddr(address='10.119.7.136', port=6053))]: [Errno 111] Connect call failed ('10.119.7.136', 6053) (SocketAPIError)
2024-10-18 11:47:50.698 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for m5stack-atom-echo-101880 @ 10.119.7.139: Error connecting to [AddrInfo(family=<AddressFamily.AF_INET: 2>, type=<SocketKind.SOCK_STREAM: 1>, proto=6, sockaddr=IPv4Sockaddr(address='10.119.7.139', port=6053))]: [Errno 111] Connect call failed ('10.119.7.139', 6053) (SocketAPIError)
2024-10-18 11:47:50.738 WARNING (MainThread) [homeassistant.util.loop] Detected blocking call to open with args (PosixPath('/config/.storage/[email protected]'),) inside the event loop by custom integration 'alexa_media' at custom_components/alexa_media/__init__.py, line 361: await login.login(cookies=await login.load_cookie()) (offender: /usr/local/lib/python3.12/site-packages/aiohttp/cookiejar.py, line 121: with file_path.open(mode="wb") as f:), please create a bug report at https://github.com/alandtse/alexa_media_player/issues
For developers, please see https://developers.home-assistant.io/docs/asyncio_blocking_operations/#open
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/usr/src/homeassistant/homeassistant/__main__.py", line 223, in <module>
sys.exit(main())
File "/usr/src/homeassistant/homeassistant/__main__.py", line 209, in main
exit_code = runner.run(runtime_conf)
File "/usr/src/homeassistant/homeassistant/runner.py", line 189, in run
return loop.run_until_complete(setup_and_run_hass(runtime_config))
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 674, in run_until_complete
self.run_forever()
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 641, in run_forever
self._run_once()
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 1990, in _run_once
handle._run()
File "/usr/local/lib/python3.12/asyncio/events.py", line 88, in _run
self._context.run(self._callback, *self._args)
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 742, in async_setup_locked
await self.async_setup(hass, integration=integration)
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 594, in async_setup
result = await component.async_setup_entry(hass, self)
File "/config/custom_components/alexa_media/__init__.py", line 361, in async_setup_entry
await login.login(cookies=await login.load_cookie())
2024-10-18 11:47:50.770 WARNING (MainThread) [homeassistant.util.loop] Detected blocking call to load_verify_locations with args (<ssl.SSLContext object at 0x7f701586d0>,) inside the event loop by custom integration 'alexa_media' at custom_components/alexa_media/__init__.py, line 922: http2 = HTTP2EchoClient( (offender: /usr/local/lib/python3.12/site-packages/httpx/_config.py, line 149: context.load_verify_locations(cafile=cafile)), please create a bug report at https://github.com/alandtse/alexa_media_player/issues
For developers, please see https://developers.home-assistant.io/docs/asyncio_blocking_operations/#load_verify_locations
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/usr/src/homeassistant/homeassistant/__main__.py", line 223, in <module>
sys.exit(main())
File "/usr/src/homeassistant/homeassistant/__main__.py", line 209, in main
exit_code = runner.run(runtime_conf)
File "/usr/src/homeassistant/homeassistant/runner.py", line 189, in run
return loop.run_until_complete(setup_and_run_hass(runtime_config))
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 674, in run_until_complete
self.run_forever()
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 641, in run_forever
self._run_once()
File "/usr/local/lib/python3.12/asyncio/base_events.py", line 1990, in _run_once
handle._run()
File "/usr/local/lib/python3.12/asyncio/events.py", line 88, in _run
self._context.run(self._callback, *self._args)
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 742, in async_setup_locked
await self.async_setup(hass, integration=integration)
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 594, in async_setup
result = await component.async_setup_entry(hass, self)
File "/config/custom_components/alexa_media/__init__.py", line 363, in async_setup_entry
await setup_alexa(hass, config_entry, login)
File "/config/custom_components/alexa_media/__init__.py", line 1312, in setup_alexa
await http2_connect()
File "/config/custom_components/alexa_media/__init__.py", line 922, in http2_connect
http2 = HTTP2EchoClient(
2024-10-18 11:47:51.096 ERROR (MainThread) [homeassistant.components.switch] Platform esphome does not generate unique IDs. ID E8:DB:84:9E:D1:72-switch-hw-recirc_restart already exists - ignoring switch.hw_recirc_restart
2024-10-18 11:47:53.603 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for s31_mon3 @ 10.119.7.140: Error connecting to [AddrInfo(family=<AddressFamily.AF_INET: 2>, type=<SocketKind.SOCK_STREAM: 1>, proto=6, sockaddr=IPv4Sockaddr(address='10.119.7.140', port=6053))]: [Errno 113] Connect call failed ('10.119.7.140', 6053) (SocketAPIError)
2024-10-18 11:47:53.605 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for temp-hum1 @ 10.119.7.144: Error connecting to [AddrInfo(family=<AddressFamily.AF_INET: 2>, type=<SocketKind.SOCK_STREAM: 1>, proto=6, sockaddr=IPv4Sockaddr(address='10.119.7.144', port=6053))]: [Errno 113] Connect call failed ('10.119.7.144', 6053) (SocketAPIError)
2024-10-18 11:47:53.650 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for esp32-s3-box-3-05ad20 @ 10.119.7.119: Error connecting to [AddrInfo(family=<AddressFamily.AF_INET: 2>, type=<SocketKind.SOCK_STREAM: 1>, proto=6, sockaddr=IPv4Sockaddr(address='10.119.7.119', port=6053))]: [Errno 113] Connect call failed ('10.119.7.119', 6053) (SocketAPIError)
2024-10-18 11:48:04.201 ERROR (MainThread) [alexapy.alexaapi] Giving up _static_request(...) after 5 tries (alexapy.errors.AlexapyTooManyRequestsError: Too Many Requests)
2024-10-18 11:48:04.202 WARNING (MainThread) [alexapy.helpers] alexaapi.get_customer_history_records((<alexapy.alexalogin.AlexaLogin object at 0x7f72619ee0>,), {'max_record_size': 10}): An error occurred accessing AlexaAPI: An exception of type AlexapyTooManyRequestsError occurred. Arguments:
('Too Many Requests',)
2024-10-18 11:48:04.203 WARNING (MainThread) [alexapy.helpers] alexaapi.get_last_device_serial((<alexapy.alexalogin.AlexaLogin object at 0x7f72619ee0>,), {}): An error occurred accessing AlexaAPI: An exception of type AlexapyTooManyRequestsError occurred. Arguments:
('Too Many Requests',)
2024-10-18 11:48:04.203 ERROR (MainThread) [custom_components.alexa_media] Error fetching alexa_media data: Error communicating with API: Too Many Requests
2024-10-18 11:48:04.248 ERROR (MainThread) [homeassistant.helpers.event] Error while processing template: Template<template=({% set hrs = (states( 'sensor.bh_hp_heat_time' ) | int) %} {% set mnts = ((states( 'sensor.bh_hp_heat_time' )| float (1) - hrs )) %} {% set mnts = (mnts * 60) | round(0) %} {{ '{:02}:{:02}'.format(hrs,mnts) }}) renders=2>
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 632, in async_render
render_result = _render_with_context(self.template, compiled, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 2729, in _render_with_context
return template.render(**kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 1304, in render
self.environment.handle_exception()
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 939, in handle_exception
raise rewrite_traceback_stack(source=source)
File "<template>", line 1, in top-level template code
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 2367, in forgiving_int_filter
raise_no_default("int", value)
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 1905, in raise_no_default
raise ValueError(
ValueError: Template error: int got invalid input 'unknown' when rendering template '{% set hrs = (states( 'sensor.bh_hp_heat_time' ) | int) %} {% set mnts = ((states( 'sensor.bh_hp_heat_time' )| float (1) - hrs )) %} {% set mnts = (mnts * 60) | round(0) %} {{ '{:02}:{:02}'.format(hrs,mnts) }}' but no default was specified
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 749, in async_render_to_info
render_info._result = self.async_render( # noqa: SLF001
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 634, in async_render
raise TemplateError(err) from err
homeassistant.exceptions.TemplateError: ValueError: Template error: int got invalid input 'unknown' when rendering template '{% set hrs = (states( 'sensor.bh_hp_heat_time' ) | int) %} {% set mnts = ((states( 'sensor.bh_hp_heat_time' )| float (1) - hrs )) %} {% set mnts = (mnts * 60) | round(0) %} {{ '{:02}:{:02}'.format(hrs,mnts) }}' but no default was specified
2024-10-18 11:48:04.256 ERROR (MainThread) [homeassistant.components.template.template_entity] TemplateError('ValueError: Template error: int got invalid input 'unknown' when rendering template '{% set hrs = (states( 'sensor.bh_hp_heat_time' ) | int) %} {% set mnts = ((states( 'sensor.bh_hp_heat_time' )| float (1) - hrs )) %} {% set mnts = (mnts * 60) | round(0) %} {{ '{:02}:{:02}'.format(hrs,mnts) }}' but no default was specified') while processing template 'Template<template=({% set hrs = (states( 'sensor.bh_hp_heat_time' ) | int) %} {% set mnts = ((states( 'sensor.bh_hp_heat_time' )| float (1) - hrs )) %} {% set mnts = (mnts * 60) | round(0) %} {{ '{:02}:{:02}'.format(hrs,mnts) }}) renders=4>' for attribute '_attr_native_value' in entity 'sensor.hp_heat_time_hm'
2024-10-18 11:48:05.009 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.frontdoor_db1c] Error from stream worker: Error opening stream (ERRORTYPE_111, Connection refused, rtsp://****:****@10.119.7.100:554)
2024-10-18 11:48:15.015 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.frontdoor_db1c] Error from stream worker: Error opening stream (ERRORTYPE_111, Connection refused, rtsp://****:****@10.119.7.100:554)
2024-10-18 11:48:33.324 ERROR (MainThread) [homeassistant.components.history_stats.helpers] Error parsing template for field end
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 632, in async_render
render_result = _render_with_context(self.template, compiled, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 2729, in _render_with_context
return template.render(**kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 1304, in render
self.environment.handle_exception()
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 939, in handle_exception
raise rewrite_traceback_stack(source=source)
File "<template>", line 1, in top-level template code
File "/usr/local/lib/python3.12/site-packages/jinja2/sandbox.py", line 394, in call
return __context.call(__obj, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: day is out of range for month
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/history_stats/helpers.py", line 40, in async_calculate_period
rendered = template.async_render()
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 634, in async_render
raise TemplateError(err) from err
homeassistant.exceptions.TemplateError: ValueError: day is out of range for month
2024-10-18 11:48:33.331 ERROR (MainThread) [homeassistant.components.history_stats.coordinator] Error fetching HW_On_time_lday_Month data: ValueError: day is out of range for month
2024-10-18 11:48:35.051 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.frontdoor_db1c] Error from stream worker: Error opening stream (ERRORTYPE_111, Connection refused, rtsp://****:****@10.119.7.100:554)
2024-10-18 11:49:05.068 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.frontdoor_db1c] Error from stream worker: Error opening stream (ERRORTYPE_111, Connection refused, rtsp://****:****@10.119.7.100:554)
2024-10-18 11:49:33.325 ERROR (MainThread) [homeassistant.components.history_stats.helpers] Error parsing template for field end
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 632, in async_render
render_result = _render_with_context(self.template, compiled, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 2729, in _render_with_context
return template.render(**kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 1304, in render
self.environment.handle_exception()
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 939, in handle_exception
raise rewrite_traceback_stack(source=source)
File "<template>", line 1, in top-level template code
File "/usr/local/lib/python3.12/site-packages/jinja2/sandbox.py", line 394, in call
return __context.call(__obj, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: day is out of range for month
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/history_stats/helpers.py", line 40, in async_calculate_period
rendered = template.async_render()
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 634, in async_render
raise TemplateError(err) from err
homeassistant.exceptions.TemplateError: ValueError: day is out of range for month
2024-10-18 11:49:45.075 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.frontdoor_db1c] Error from stream worker: Error opening stream (ERRORTYPE_111, Connection refused, rtsp://****:****@10.119.7.100:554)
2024-10-18 11:50:33.324 ERROR (MainThread) [homeassistant.components.history_stats.helpers] Error parsing template for field end
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 632, in async_render
render_result = _render_with_context(self.template, compiled, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 2729, in _render_with_context
return template.render(**kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 1304, in render
self.environment.handle_exception()
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 939, in handle_exception
raise rewrite_traceback_stack(source=source)
File "<template>", line 1, in top-level template code
File "/usr/local/lib/python3.12/site-packages/jinja2/sandbox.py", line 394, in call
return __context.call(__obj, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: day is out of range for month
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/history_stats/helpers.py", line 40, in async_calculate_period
rendered = template.async_render()
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 634, in async_render
raise TemplateError(err) from err
homeassistant.exceptions.TemplateError: ValueError: day is out of range for month
2024-10-18 11:50:35.084 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.frontdoor_db1c] Error from stream worker: Error opening stream (ERRORTYPE_111, Connection refused, rtsp://****:****@10.119.7.100:554)
2024-10-18 11:51:33.324 ERROR (MainThread) [homeassistant.components.history_stats.helpers] Error parsing template for field end
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 632, in async_render
render_result = _render_with_context(self.template, compiled, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 2729, in _render_with_context
return template.render(**kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 1304, in render
self.environment.handle_exception()
File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 939, in handle_exception
raise rewrite_traceback_stack(source=source)
File "<template>", line 1, in top-level template code
File "/usr/local/lib/python3.12/site-packages/jinja2/sandbox.py", line 394, in call
return __context.call(__obj, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: day is out of range for month
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/history_stats/helpers.py", line 40, in async_calculate_period
rendered = template.async_render()
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/template.py", line 634, in async_render
raise TemplateError(err) from err
homeassistant.exceptions.TemplateError: ValueError: day is out of range for month
2024-10-18 11:51:35.090 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.frontdoor_db1c] Error from stream worker: Error opening stream (ERRORTYPE_111, Connection refused, rtsp://****:****@10.119.7.100:554)"
No. You delete it from the integration page, what youâre doing here is removing the files. We want to remove the configuration not the installation
Go to your integrations page, settings â integrations, look for the integration and remove it.
No matter, the error seen after restarting was relative to setup files being present when the integration was missing. I followed the link to remove the setup and no further error was seen.