Here is what is in home-assistant.log in the config directory:
2024-06-23 12:05:56.859 ERROR (MainThread) [upb_lib.parse_upstart] Cannot open UPStart file: [Errno 2] No such file or directory: ‘/root/config/upstart.upe root/config/upstart.upe’
2024-06-23 12:05:56.859 ERROR (MainThread) [homeassistant.components.upb.config_flow] Missing or invalid UPB file: /root/config/upstart.upe root/config/upstart.upe
2024-06-23 12:06:53.190 INFO (MainThread) [upb_lib.upb] Using flags: {‘’: True}
2024-06-23 12:06:53.199 WARNING (MainThread) [homeassistant.util.loop] Detected blocking call to open inside the event loop by integration ‘upb’ at homeassistant/components/upb/config_flow.py, line 41: upb = upb_lib.UpbPim({“url”: url, “UPStartExportFile”: file_path}) (offender: /usr/local/lib/python3.12/site-packages/upb_lib/parse_upstart.py, line 18: with open(filename) as file_handle:), please create a bug report at Issues · home-assistant/core · GitHub
Traceback (most recent call last):
File “”, line 198, in _run_module_as_main
File “”, line 88, in _run_code
File “/usr/src/homeassistant/homeassistant/main.py”, line 223, in
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 190, in run
return loop.run_until_complete(setup_and_run_hass(runtime_config))
File “/usr/local/lib/python3.12/asyncio/base_events.py”, line 672, in run_until_complete
self.run_forever()
File “/usr/local/lib/python3.12/asyncio/base_events.py”, line 639, in run_forever
self._run_once()
File “/usr/local/lib/python3.12/asyncio/base_events.py”, line 1988, 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/local/lib/python3.12/site-packages/aiohttp/web_protocol.py”, line 452, in _handle_request
resp = await request_handler(request)
File “/usr/local/lib/python3.12/site-packages/aiohttp/web_app.py”, line 543, in _handle
resp = await handler(request)
File “/usr/local/lib/python3.12/site-packages/aiohttp/web_middlewares.py”, line 114, in impl
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/security_filter.py”, line 92, in security_filter_middleware
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/forwarded.py”, line 83, in forwarded_middleware
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/request_context.py”, line 26, in request_context_middleware
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/ban.py”, line 85, in ban_middleware
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/auth.py”, line 242, in auth_middleware
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/headers.py”, line 32, in headers_middleware
response = await handler(request)
File “/usr/src/homeassistant/homeassistant/helpers/http.py”, line 73, in handle
result = await handler(request, **request.match_info)
File “/usr/src/homeassistant/homeassistant/components/http/decorators.py”, line 81, in with_admin
return await func(self, request, *args, **kwargs)
File “/usr/src/homeassistant/homeassistant/components/config/config_entries.py”, line 222, in post
return await super().post(request, flow_id)
File “/usr/src/homeassistant/homeassistant/components/http/data_validator.py”, line 70, in wrapper
return await method(view, request, data, *args, **kwargs)
File “/usr/src/homeassistant/homeassistant/helpers/data_entry_flow.py”, line 122, in post
result = await self._flow_mgr.async_configure(flow_id, data)
File “/usr/src/homeassistant/homeassistant/data_entry_flow.py”, line 368, in async_configure
result = await self._async_configure(flow_id, user_input)
File “/usr/src/homeassistant/homeassistant/data_entry_flow.py”, line 414, in _async_configure
result = await self._async_handle_step(
File “/usr/src/homeassistant/homeassistant/data_entry_flow.py”, line 517, in _async_handle_step
result: _FlowResultT = await getattr(flow, method)(user_input)
File “/usr/src/homeassistant/homeassistant/components/upb/config_flow.py”, line 91, in async_step_user
network_id, info = await _validate_input(user_input)
File “/usr/src/homeassistant/homeassistant/components/upb/config_flow.py”, line 41, in _validate_input
upb = upb_lib.UpbPim({“url”: url, “UPStartExportFile”: file_path})