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
Looks like the Action Pack tests assumed that the default environment was HTTP/1.1. a68ea95 made it explicitly HTTP/1.0. Should that be the default? I guess it's possible there are HTTP/1.0 clients out there, but I'd guess the vast majority of real world cases are HTTP/1.1.
Anyway, I can fix this upstream in Rails, but I'm not sure if HTTP/1.0 is a sensible default.
This was to work around the fact that some software will return Transfer-Encoding: chunked responses, and rack-test does not have a decoder for that. Users that want to force HTTP/1.1 can do so by using env. See #274 and #288 for details.
Looks like the Action Pack tests assumed that the default environment was HTTP/1.1. a68ea95 made it explicitly HTTP/1.0. Should that be the default? I guess it's possible there are HTTP/1.0 clients out there, but I'd guess the vast majority of real world cases are HTTP/1.1.
Anyway, I can fix this upstream in Rails, but I'm not sure if HTTP/1.0 is a sensible default.
@jeremyevans what's your opinion on this?
The text was updated successfully, but these errors were encountered: