I did a deeper dive into the logs. Paying attention to the times. I found an interesting log entry at just about the same time I attempted the failed upgraded from 15.1 to 15.2.
Logger: homeassistant.components.websocket_api.http.connection
Source: components/websocket_api/commands.py:250
integration: Home Assistant WebSocket API (documentation, issues)
First occurred: 9:00:16 AM (6 occurrences)
Last logged: 12:17:27 PM
[547278938464] Unexpected exception
[546584934848] Unexpected exception
[546597191040] Unexpected exception
[546748601408] Unexpected exception
[546563316672] Unexpected exception
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/hassio/update_helper.py", line 80, in update_os
await client.os.update(OSUpdate(version=version))
File "/usr/local/lib/python3.13/site-packages/aiohasupervisor/os.py", line 30, in update
await self._client.post(
"os/update", json=options.to_dict() if options else None, timeout=None
)
File "/usr/local/lib/python3.13/site-packages/aiohasupervisor/client.py", line 182, in post
return await self._request(
^^^^^^^^^^^^^^^^^^^^
...<7 lines>...
)
^
File "/usr/local/lib/python3.13/site-packages/aiohasupervisor/client.py", line 129, in _request
await self._raise_on_status(response)
File "/usr/local/lib/python3.13/site-packages/aiohasupervisor/client.py", line 76, in _raise_on_status
raise exc_type(result.message, result.job_id)
aiohasupervisor.exceptions.SupervisorBadRequestError: Unknown error, see supervisor
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/websocket_api/commands.py", line 250, in handle_call_service
response = await hass.services.async_call(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...<7 lines>...
)
^
File "/usr/src/homeassistant/homeassistant/core.py", line 2802, in async_call
response_data = await coro
^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/core.py", line 2845, in _execute_service
return await target(service_call)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1007, in entity_service_call
single_response = await _handle_entity_call(
^^^^^^^^^^^^^^^^^^^^^^^^^^
hass, entity, func, data, call.context
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1079, in _handle_entity_call
result = await task
^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/update/__init__.py", line 157, in async_install
await entity.async_install_with_progress(version, backup)
File "/usr/src/homeassistant/homeassistant/components/update/__init__.py", line 489, in async_install_with_progress
await self.async_install(version, backup)
File "/usr/src/homeassistant/homeassistant/components/hassio/update.py", line 197, in async_install
await update_os(self.hass, version, backup)
File "/usr/src/homeassistant/homeassistant/components/hassio/update_helper.py", line 82, in update_os
raise HomeAssistantError(
f"Error updating Home Assistant Operating System: {err}"
) from err
homeassistant.exceptions.HomeAssistantError: Error updating Home Assistant Operating System: Unknown error, see supervisor
… if I had to guess, just from the above, it looks like the Python script timed out waiting for some asynchronous event to happen.