Josh Snyder
Josh Snyder
It looks like uwsgi provides a nonstandard `HTTPS_CLIENT_CERTIFICATE`, with the raw bytes of the client cert. I was unable to find anything in gunicorn implementing client certificates, except for this...
Oops, I missed the existing convo while making my remarks. Sorry!
Thanks for this! I'll merge this after I've finished #3.
#4 reminded me that I still need to do this. Would you mind transferring ownership over? My pypi username is josnyder.
Hey, I don't see code for this in master. Did something prevent you from merging the change you had?
@woky I looked up the docstring for `__call__`, and found that it says ["A shortcut for run(args), returning only the process’ stdout"](https://plumbum.readthedocs.io/en/latest/api/commands.html#plumbum.commands.base.BaseCommand.__call__). I was able to get output going to...
That's great news! Should we close this one then?
I have been able to work around the issue with this patch: ```diff diff --git a/aiohttp/client_proto.py b/aiohttp/client_proto.py index db22406c..34335b81 100644 --- a/aiohttp/client_proto.py +++ b/aiohttp/client_proto.py @@ -148,7 +148,8 @@ class ResponseHandler(BaseProtocol,...