http4s-curl icon indicating copy to clipboard operation
http4s-curl copied to clipboard

Requests with `Transfer-Encoding: chunked` are broken

Open armanbilge opened this issue 3 years ago • 0 comments

And I'm not really sure why. For example:

// the server responds 400 parse error: invalid character in chunk size
Request[IO](POST).withEntity(Stream.emit[IO, String]("blah"))

// this just hangs
Request[IO](POST).withEntity[Stream[IO, String]](Stream.empty)

armanbilge avatar Aug 22 '22 17:08 armanbilge