slogsdon / elixir-reverse-proxy

A Plug based, reverse proxy server written in Elixir.
https://hex.pm/packages/reverse_proxy
MIT License
147 stars 34 forks source link

Delete `Transfer-Encoding` header #6

Closed tt closed 7 years ago

tt commented 7 years ago

As Plug.Conn.read_body/2 will handle a chunked body, passing the header to the HTTP client with the non-chunked body would be a violation of the HTTP specification.

coveralls commented 7 years ago

Coverage Status

Coverage remained the same at 97.143% when pulling 26e3bd8742bba1e6025efe5b695756f72d4c7535 on tt:delete-transfer-encoding-header into cc25ae9b399782f549c4af89b5197976c09b6122 on slogsdon:master.

coveralls commented 7 years ago

Coverage Status

Coverage remained the same at 97.143% when pulling 26e3bd8742bba1e6025efe5b695756f72d4c7535 on tt:delete-transfer-encoding-header into cc25ae9b399782f549c4af89b5197976c09b6122 on slogsdon:master.

slogsdon commented 7 years ago

Thanks, @tt!