Suppress Error: <name> hardware (<idx>) thread seems to have ended unexpectedly
Posted: Tuesday 21 January 2025 8:48
Hi,
I am the author of the Volvo plugin. Volvo recently added something to the API, so that for invocation commands (lock/unlock car, start/stop climatization) so that i now every once in a while get status code 427 which means i have to keep retrying till the car is available again
so pseudo code:
This code works fine. The plugin also works fine, cause even when this process take 1 minute (which is the max)
However when ik takes about 1 minute, domoticz does log this line:
This line is not correct cause, the plugin still works perfectly. After this wait time it continues again.
How can i suppress or avoid this error?
I am the author of the Volvo plugin. Volvo recently added something to the API, so that for invocation commands (lock/unlock car, start/stop climatization) so that i now every once in a while get status code 427 which means i have to keep retrying till the car is available again
so pseudo code:
Code: Select all
onCommand(...):
if deviceid==CLIMATIZATION:
status = VolvoAPI_call_for_switching_on_off_climatization()
if status==427:
retry VolvoAPI_call_for_switching_on_off_climatization() every X seconds until succeeds...
However when ik takes about 1 minute, domoticz does log this line:
Code: Select all
Error: XC40 hardware (34) thread seems to have ended unexpectedly
How can i suppress or avoid this error?