forked from M-Labs/thermostat
This commit is contained in:
parent
8ab93591a3
commit
6c09ce1be0
|
@ -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