Irfanuddin Shafi Ahmed

Results 94 comments of Irfanuddin Shafi Ahmed

@adriangb are you working on this? Can I also help, if needed?

Sounds good to me! I'll start with local/dev, systemd, gunicorn; let me know where do we collaborate.

@adriangb I finally started something. It's currently residing [in my repo](https://github.com/iudeen/uvicorn/tree/docs/deployment-docs-enhancement) Should I do a PR? If yes, to which branch?

A simple visual representation of what takes precedence would give developers a quick understanding. Since we have multiple levels of precedence, writing would become too wordy 🤔

I am not sure if these features are needed at this point of time, but I went ahead and added as I was not able to conclusively find a reason...

@Kludex, agreed will make the changes today! thanks for your feedback

## Test Results: ### Code: ```python # app.py from fastapi import FastAPI from starlette.websockets import WebSocket app = FastAPI() @app.websocket("/ws") async def websocket_endpoint(websocket: WebSocket): await websocket.accept() while True: data =...

`--no-date-header` is not compatible with Websockets implementation. Added that also as a limitation in documentation.

Closing this request, as it was made from `master` branch of the forked repo. Sorry! Please refer to https://github.com/encode/uvicorn/pull/1606 for further updates.

I saw this getting flagged by SonarQube. ```python # h11_impl.py line 401 async def run_asgi(self, app: "ASGI3Application") -> None: try: result = await app(self.scope, self.receive, self.send) except BaseException as exc:...