home-assistant/core · error · ConfigEntryAuthFailed
ConfigEntryAuthFailed
Error message
ConfigEntryAuthFailed
What it means
Error "ConfigEntryAuthFailed" thrown in home-assistant/core.
Source
Thrown at homeassistant/components/braviatv/coordinator.py:170
self.source_list.append(title)
@override
async def _async_update_data(self) -> None:
"""Connect and fetch data."""
try:
if not self.connected:
try:
if self.use_psk:
await self.client.connect(psk=self.pin)
else:
await self.client.connect(
pin=self.pin,
clientid=self.client_id,
nickname=self.nickname,
)
self.connected = True
except BraviaAuthError as err:
raise ConfigEntryAuthFailed from err
power_status = await self.client.get_power_status()
self.is_on = power_status == "active"
self.skipped_updates = 0
self.update_interval = (
timedelta(seconds=120) if power_status == "standby" else SCAN_INTERVAL
)
if not self.system_info:
self.system_info = await self.client.get_system_info()
if self.is_on is False:
return
if not self.source_map:
await self.async_update_sources()
await self.async_update_volume()
await self.async_update_playing()View on GitHub (pinned to 58a3fdb3ea)
Solutions
- Re-authenticate the Bravia TV integration: delete the PIN pairing and re-run the config flow to pair again with a new PIN shown on the TV.
- Verify on the TV that the pre-shared key or PIN has not been changed or reset.
- Make sure the TV's remote control / IP control setting is still enabled.
Example fix
Reauthenticate the Bravia TV: confirm the PIN or PSK entered in Home Assistant matches the TV's pre-shared key setting, then trigger reauth from the integration's config entry.
When it happens
Trigger: Thrown at homeassistant/components/braviatv/coordinator.py:170 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of home-assistant/core@58a3fdb3ea (2026-08-14).
Data as JSON: /api/errors/900be09771241010.
Report an issue: GitHub.