Andre Martins
Andre Martins
As mentioned in the issue #40, by default, aiohttp has a [5 minutes timeout](https://docs.aiohttp.org/en/stable/client_quickstart.html#timeouts) defined. By setting `sock_read` to None, it will keep the connection open, avoiding reconnects every 5...
Hello, As mentioned in [this home-assistant issue](https://github.com/home-assistant/core/issues/151651), Tractive deprecated the `wellness_overview` message, replacing it with a new `health_overview`. This new message should be received as a channel event, just like...
Hi Unlike the [graph integration](https://github.com/zhulik/aiotractive/blob/main/aiotractive/api.py#L78), the [channel integration](https://github.com/zhulik/aiotractive/blob/main/aiotractive/channel.py#L53) does not implement any kind of backoff on failures. Instead, it keeps constantly retrying, which in some situations leads to requests being...
Hi, By default, aiohttp has a [5 minutes timeout](https://docs.aiohttp.org/en/stable/client_quickstart.html#timeouts) defined. The [channel request](https://github.com/zhulik/aiotractive/blob/main/aiotractive/channel.py#L53) is a long polling endpoint, which means that a read timeout does not make sense for this...