nicolasff / webdis

A Redis HTTP interface with JSON output
https://webd.is
BSD 2-Clause "Simplified" License
2.83k stars 304 forks source link

suggest Transfer-Encoding: Chunked change to chunked #17

Closed fabware closed 13 years ago

fabware commented 13 years ago

I'm investigating a pubsub related client slide bug with webdis. I noticed webdis using "Chunked" instead of "chunked", which may cause problem to not well-written http client lib.

I give a rough reading of Transfer-Encoding section of http 1.1: http://tools.ietf.org/html/rfc2616#page-143. It suggest using chunked instead of Chunked.

nicolasff commented 13 years ago

Hello,

You are right, "chunked" should not have a capital letter. I have pushed a fix to address this issue.
Thanks!

Nicolas