I am using HA standalone container with HACS. I have a few custom components installed via HACS, as well as several devices/integrations setup. Yesterday I updated HACS, and later noticed some sensors were no longer updating except when HA starts up. There are no errors relating to sensors updating, which I have experienced in the past, full HA logs.
I have a second HA instance in a different location running the same HA version (2022.2.9) as well as the same HACS version, the sensor is updating regularly (5 second polling) so I am a bit stumped… Originally I posted it in the custom component thread, but now I am thinking it could be HA related as the two setups are pretty much identical.
Sensor last update does not change until HA is restarted.
[root@fedora _data]# podman logs homeassistant
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] done.
[services.d] starting services
[services.d] done.
2022-04-03 01:14:03 WARNING (SyncWorker_1) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2022-04-03 01:14:03 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration nhl_api which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
I setup logger to log info level after and can see the sensor in question is getting setup.
[root@fedora _data]# podman logs homeassistant 2>&1 | grep -i setting | grep -i nhl
2022-04-03 01:27:11 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.nhl_api
Any suggestions for debugging? Thanks!