You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It only supports the extension if you give it the request environ, but in theory that's solvable with better integration which can override __call__(self, environ, start_response) and grab it at render time.
Side note, it probably wouldn't be a bad idea to add https://github.com/Pylons/pyramid/blob/85900228894814105aa882e1e71f1e4e69090a9e/pyramid/response.py#L32-L77 to webob which supports
wsgi.file_wrapper
which can use sendfile on conforming wsgi servers to avoid even reading the data in the worker threads.It only supports the extension if you give it the request environ, but in theory that's solvable with better integration which can override
__call__(self, environ, start_response)
and grab it at render time.Originally posted by @mmerickel in #360 (comment)
The text was updated successfully, but these errors were encountered: