Giovanni Barillari
Giovanni Barillari
I guess you can change the log level to be less verbose just for granian logger.
I guess we could change those logs to be only in `debug` level, but I need to think more about it. People might rely on those log lines.
@XChikuX I think you're misunderstanding that logline. The message is not about certificates, but the upstream aborting the connection.
> Would it be a good idea to make the documentation a bit more versbose? Perhaps creating a 'testing-how-to.md' or 'orm-how-to-md' that includes snippets for implementing key features and highlights...
@hanerlend sounds definitely possible to do so; I'm wondering if something that should come with Emmett itself or something that should be packed into a dedicated extension.
@hanerlend it can be an extension and still be loaded with the `dev` command.
@aldem to my perspective, loading opened Python file descriptors into Rust might be very unsound, as: - we can't guarantee anything about those file descriptors, it's an unsafe code block...
> there is nothing special about those fds, the only difference is that passed fd is already open, the rest is like with any other fd. The handling can be...
It seems like something in your code is treating Granian futures as coroutines. Can you provide a MRE?
I think the problematic line is `while not (await request.is_disconnected()):` Not a starlette/FastAPI expert, but it seems (_for reasons_) on exceptions the receive future from Granian gets treated as a...