Philips Hue down since 0.104.1

HA doesn’t detect my Hue bridge with the following error:

Error setting up entry sf-Hue for hue
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/config_entries.py", line 215, in async_setup
    hass, self
  File "/usr/src/homeassistant/homeassistant/components/hue/__init__.py", line 114, in async_setup_entry
    allow_unreachable = config[CONF_ALLOW_UNREACHABLE]
KeyError: 'allow_unreachable'

Any hint or advice how to resolve that?

Been working for a very long time without issue…
All I have is this in my configuration file:

hue:
 bridges:
   - host: 192.168.1.30

Downgraded to 0.104.0 and it works now… there seems to be a bug in 0.104.1… I’ll wait for comments and will stay on this version for now…

1 Like

Open an issue so they can investigate

Found solution; you need to add the following config options to hue

hue:
  bridges:
    - host: xxx
      allow_unreachable: true <- this
      allow_hue_groups: true <- this

According to integration page, these are optional, so seems like a bug to me

1 Like

Someone was faster than me, but I added the comment to github issue too.

3 Likes

I solved this by uninstalling HUE integration, reboot HA and re-install HUE. All lights etc. will show up just like before (no need to rename any entities)

1 Like

yes! that worked for me as well, thank you so much!

Did the trick, thanks!