mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-11-28 13:05:12 +01:00
Reverse future done checks so we know they are actually reachable (#708)
This commit is contained in:
parent
3711d54ffa
commit
d592f1e7ab
@ -220,8 +220,7 @@ class APIConnection:
|
||||
if self._debug_enabled:
|
||||
_LOGGER.debug("Cleaning up connection to %s", self.log_name)
|
||||
for fut in self._read_exception_futures:
|
||||
if fut.done():
|
||||
continue
|
||||
if not fut.done():
|
||||
err = self._fatal_exception or APIConnectionError("Connection closed")
|
||||
new_exc = err
|
||||
if not isinstance(err, APIConnectionError):
|
||||
@ -676,8 +675,7 @@ class APIConnection:
|
||||
|
||||
def _handle_timeout(self, fut: asyncio.Future[None]) -> None:
|
||||
"""Handle a timeout."""
|
||||
if fut.done():
|
||||
return
|
||||
if not fut.done():
|
||||
fut.set_exception(asyncio_TimeoutError)
|
||||
|
||||
def _handle_complex_message(
|
||||
@ -689,8 +687,7 @@ class APIConnection:
|
||||
resp: message.Message,
|
||||
) -> None:
|
||||
"""Handle a message that is part of a response."""
|
||||
if fut.done():
|
||||
return
|
||||
if not fut.done():
|
||||
if do_append is None or do_append(resp):
|
||||
responses.append(resp)
|
||||
if do_stop is None or do_stop(resp):
|
||||
|
Loading…
Reference in New Issue
Block a user