Hi,
I have been having trouble with the OpenUV components api so I disabled it by removing it from my configuration.yaml. However, when starting HA it still tries to load it:
2018-11-02 14:16:07 WARNING (MainThread) [homeassistant.config_entries] Config entry for openuv not ready yet. Retrying in 10 seconds.
2018-11-02 14:16:07 ERROR (MainThread) [homeassistant.components.openuv] Config entry failed: Invalid API key
2018-11-02 14:16:07 WARNING (MainThread) [homeassistant.config_entries] Config entry for openuv not ready yet. Retrying in 10 seconds.
2018-11-02 14:16:18 ERROR (MainThread) [homeassistant.components.openuv] Config entry failed: Invalid API key
2018-11-02 14:16:18 WARNING (MainThread) [homeassistant.config_entries] Config entry for openuv not ready yet. Retrying in 20 seconds.
2018-11-02 14:16:18 ERROR (MainThread) [homeassistant.components.openuv] Config entry failed: Invalid API key
2018-11-02 14:16:18 WARNING (MainThread) [homeassistant.config_entries] Config entry for openuv not ready yet. Retrying in 20 seconds.
How can I disable this?
My Configuration.yaml:
homeassistant:
name: HA
latitude: !secret home_latitude
longitude: !secret home_longitude
elevation: !secret home_elevation
time_zone: !secret home_timezone
unit_system: metric
# Customization file
customize: !include customize.yaml
# Enables the frontend with themes
frontend:
themes: !include_dir_merge_named themes
# Enables configuration UI
config:
http:
base_url: !secret base_url
ip_ban_enabled: True
login_attempts_threshold: 5
trusted_networks: 192.168.0.0/24
# Enable the Updater
updater:
# Enables support for tracking state changes over time
history:
exclude:
domains:
- updator
- discovery
- switch
entities:
- sun.sun
- sensor.sandymount_tide
# Configure the history component with recorder
recorder:
purge_interval: 7
purge_keep_days: 14
exclude:
domains:
- automation
- updator
- discovery
entities:
- sun.sun
# View all events in a logbook
# logbook:
weather:
- platform: darksky
api_key: !secret darksky_api_key
# Track the sun
sun:
########### Includes ###########
group: !include groups.yaml
device_tracker: !include_dir_list presence_detection/
sensor: !include_dir_list sensors/
switch: !include_dir_list switches/
automation: !include automations.yaml
camera: !include_dir_list cameras/
Thanks,
Dan