vexofp

Results 4 comments of vexofp

Probably the biggest issue is an incompatibility with Octoprint 1.8.0+. See https://github.com/BillyBlaze/OctoPrint-TouchUI/issues/532 for more info. There is a link in there to a branch I made and have been using...

@Unn4m3DD , I think the legend and temperature values at the bottom there still look messed up. They should look like this: ![image](https://user-images.githubusercontent.com/15070192/222935133-a02ea2c8-5d24-48b0-bd79-b72b35de44fc.png) Please feel free to steal from https://github.com/BillyBlaze/OctoPrint-TouchUI/compare/master...vexofp:532-temp-graph-1.8.x...

I prototyped some of the different proposed solutions from the architecture threads linked above in branches ([1C](https://github.com/home-assistant/core/compare/dev...vexofp:homeassistant-core:tilt-cover-1c), [2A](https://github.com/home-assistant/core/compare/dev...vexofp:homeassistant-core:tilt-cover-2a)). Personally, I have been running the 1C option at home with my...

This is a result of the call(s) to [`server.wait_closed()`](https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.Server.wait_closed) in the [shutdown path](https://github.com/pgjones/hypercorn/blob/0.17.3/src/hypercorn/asyncio/run.py#L167). Starting in 3.12, this method now waits until "all active connections have finished". (Change implemented in https://github.com/python/cpython/issues/79033...