-
I’m having this same issue with multiple device, device types and vendors. Here’s a use case with a switch.
Similar issue with thermostats. On startup they report the last state - like heating with wrong setpoint. Looking at the logs, it appear that on startup the dynamic entities (like switch state) are not queried and a cached value is being used - resulting in incorrect data. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is intended and has been like this since v7.0.0 Querying a lot of potentially stale values during the startup lead to network congestion and delays. In larger network, these queries could take up to several minutes, during which normal communication could be negatively impacted. If you need some values to be up to date, you can query them yourself via an automation for example. |
Beta Was this translation helpful? Give feedback.
This is intended and has been like this since v7.0.0
https://github.com/zwave-js/node-zwave-js/blob/master/CHANGELOG_v8.md#700-2021-03-23--summer-is-coming
Querying a lot of potentially stale values during the startup lead to network congestion and delays. In larger network, these queries could take up to several minutes, during which normal communication could be negatively impacted. If you need some values to be up to date, you can query them yourself via an automation for example.