yolani
(yolani)
March 8, 2018, 5:22pm
1
Hi there,
I need some help… I don’t know exactly when, but recently the update icon stopped showing, even though update are available. I am still running 0.64.1, so it should be visible.
my updater config looks like this:
updater:
include_used_components: true
and I have a view config like this:
default_view:
name: Zuhause
view: yes
icon: mdi:home
entities:
- updater.updater
any ideas why I don’t see the icon any more?
I think that the devs forgot something.
Take a look here:
If i’m right, the updater runs 1 hour after HA start and then every day at the same time.
-> /srv/homeassi/lib/python3.4/site-packages/homeassistant/components/updater.py
# Update daily, start 1 hour after startup
_dt = datetime.now() + timedelta(hours=1)
If you can’t wait, change to 1 or 2 minutes.
_dt = datetime.now() + timedelta(minutes=1)
and restart HA.
When your loglevel is debug,
logger:
default: warn
logs:
homeassistant.components.updater: debug
you would see …
yolani
(yolani)
March 11, 2018, 8:34am
4
Hello Rainer,
thanks for pointing me to this post. I will just use the command line based solution proposed there. Seems much more reliable…