forked from M-Labs/thermostat
_
This commit is contained in:
parent
da70430c35
commit
5475bf7951
@ -41,15 +41,13 @@ class Thermostat(QObject, metaclass=PropertyMeta):
|
||||
self._update_params_task = asyncio.create_task(self.update_params())
|
||||
while True:
|
||||
if self._update_params_task.done():
|
||||
if self._update_params_task.exception() is not None:
|
||||
try:
|
||||
raise self._update_params_task.exception()
|
||||
except asyncio.TimeoutError:
|
||||
logging.error(
|
||||
"Encountered an error while polling for information from Thermostat.",
|
||||
exc_info=True,
|
||||
)
|
||||
_ = self._update_params_task.result()
|
||||
try:
|
||||
self._update_params_task.result()
|
||||
except asyncio.TimeoutError:
|
||||
logging.error(
|
||||
"Encountered an error while polling for information from Thermostat.",
|
||||
exc_info=True,
|
||||
)
|
||||
self._update_params_task = asyncio.create_task(self.update_params())
|
||||
await asyncio.sleep(self._update_s)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user