Jakub Švehla
Jakub Švehla
According to the `asyncio` documentation, [it is necessary to keep a strong reference to a task to avoid it disappearing mid-execution because the event loop only keeps weak references to...
It would be great if `Quart.run` was able to pass through errors at the server level and let the server crash. This option would be super useful in debugging and...
Fixes propagating exceptions when the `PROPAGATE_EXCEPTIONS` config setting is set to `True` by fixing exception handling in `ASGIHTTPConnection`. Currently, when `PROPAGATE_EXCEPTIONS` is set to `True` it returns the traceback as...
When setting the `PROPAGATE_EXCEPTIONS` config variable to `True`, the ASGI app does not propagate the exceptions but instead returns the traceback as HTML. The expected behavior is to propagate the...