uvicorn
uvicorn copied to clipboard
An ASGI web server, for Python. 🦄
Copied from my original post https://github.com/encode/uvicorn/issues/1559#issuecomment-1179776669 ## Steps to reproduce ### Minimal Fastapi code ``` import logging import signal import time from logging import handlers from fastapi import FastAPI from...
Add an example of how to run the uvicorn with the reload option programmatically.
### Discussed in https://github.com/encode/uvicorn/discussions/1558 Originally posted by **wonjoonSeol-WS** July 7, 2022 I Use FastAPI+Uvicorn+Gunicorn and issuing USR1 signal to uvicorn worker restarts the worker. I believe the issue is to...
When running under gunicorn, [`--access-logformat`](http://docs.gunicorn.org/en/stable/settings.html#access-log-format) isn't honored. There was some discussion of this in #389, but I didn't see an open issue for it. > [!IMPORTANT] > - We're using...
From the ASGI documentation, we have that: > The core ASGI specification does not allow for any control over the denial response, instead specifying that the HTTP status code 403...
### Checklist - [X] There are no similar issues or pull requests for this yet. - [x] I discussed this idea on the [community chat](https://gitter.im/encode/community) and feedback is positive. ###...
Related link: https://github.com/encode/uvicorn/pull/1049 https://github.com/encode/uvicorn/pull/1235 Perhaps this PR should be merged after several versions of #1235 have been merged to allow enough buffer time for users. resolved https://github.com/encode/uvicorn/issues/371 resolved https://github.com/encode/uvicorn/issues/708
Fix https://github.com/encode/uvicorn/issues/1285