euri10
euri10
> I will add a few tests and will try to fix implementation, but the Iack of ready implementations on Github confuses me. Maybe someone sees any other examples of...
> In my case i use cloudflare.com and it proxy the requests by its Global CDNs when i get a request on uvicorn it shows to me the cloudflare cdn...
ADDED tests: - [ ] tests - [x] conftest.py - [x] importer - [x] __init__.py - [x] raise_import_error.py - [x] test_importer.py - [x] __init__.py - [ ] middleware - [...
related https://github.com/encode/uvicorn/pull/776
I have some questions @samypr100 :) 1. how does gunicorn deal with that, I'm not following the project closely enough but I don't think they provide that option 2. if...
> Flask for example has the ability to pass an ssl_context on it's built-in development server. can you point me where, this is interesting. ok @samypr100 now that #807 and...
> It is worth mentioning that in [#371 (comment)](https://github.com/encode/uvicorn/issues/371#issuecomment-1029450222) , the test results of a2wsgi are almost the same as those of ASGI. and the from OP's tests the fix...
some tests, ~~I can confirm #1329 doesn't fix the issue~~, and this branch does: on master: ``` ❯ curl --form file='@10M.file' -w "@curl-format.txt" http://localhost:8000 Payload size: 10485960 time_namelookup: 0.000838s time_connect:...
> Hm, it sounds strange @euri10 as I've verified that my branch does fix the issue, and your results are suspiciously similar to the `master` branch, making me think you've...
> OTOH, my branch is just a quickfix for quadratic explosion while still buffering into a bytestring; @abersheeran's middleware does it "properly" by streaming request. So it's still much desirable...