J. Nick Koston
J. Nick Koston
```diff diff --git a/supervisor/api/ingress.py b/supervisor/api/ingress.py index 55a7382c..76d5b52a 100644 --- a/supervisor/api/ingress.py +++ b/supervisor/api/ingress.py @@ -279,7 +279,7 @@ class APIIngress(CoreSysAttributes): try: response.headers["X-Accel-Buffering"] = "no" await response.prepare(request) - async for data in result.content.iter_chunked(4096):...
| | Benchmark | `BASE` | `HEAD` | Change | | --- | --------- | ----------------------- | ------------------- | ------ | | 🆕 | `` test_ten_streamed_responses_iter_any[pyloop] `` | N/A |...
@Chaoscontrol Can you tell if they are being compressed with zlib when going through ingress?
Look for the `content-encoding:` header in your browser's Dev Tools Network tab for the payload you are downloading. What is the value?
https://github.com/home-assistant/core/pull/124173 is the fix on the core side for this
Thank you for your contribution thus far! 🎖 Since this is a significant contribution, we would appreciate you'd added yourself to the list of code owners for this integration. ❤️...
```diff diff --git a/homeassistant/components/nut/sensor.py b/homeassistant/components/nut/sensor.py index 2bdfcdab5b4..e212cdf1ad3 100644 --- a/homeassistant/components/nut/sensor.py +++ b/homeassistant/components/nut/sensor.py @@ -6,7 +6,7 @@ from collections.abc import Callable from dataclasses import asdict, dataclass import logging from typing import...
Thanks @tdfountain
fixed by https://github.com/aio-libs/frozenlist/pull/595
Looks like this was added in #55491 I agree based on above that it appears to be invalid. However it seems like the user who opened the PR was able...