Runtime
node.js
Runtime version
v20.11.0
Module version
10.0.4
Last module version without issue
No response
Used with
hapi
Any other relevant information
No response
What are you trying to achieve or the steps to reproduce?
We are using h2o2 to proxy requests. We have found that sending a DELETE request with a content-length of 0 has an unexpected result:
- We get a 0 length Buffer as the payload
- h2o2 then concludes that since there's no transfer-encoding header in the originating request, (no encoding), there IS a payload, and this is a DELETe method that it should add a transfer-encoding: chunked header
- Later on, the overall hapi system concludes (it seems) that since there IS a Buffer instance (even if 0) it will add a content-length header
What was the result you got?
The result is that the request that is sent on has both a transfer-encoding and a content-length header. Evidently, this is technically incorrect. We have two other servers in our systems which do not like this header combination and reject the request. (other servers don't seem to care)
What result did you expect?
Probably that if there is no content, that we do not set a transfer-encoding header?
Runtime
node.js
Runtime version
v20.11.0
Module version
10.0.4
Last module version without issue
No response
Used with
hapi
Any other relevant information
No response
What are you trying to achieve or the steps to reproduce?
We are using h2o2 to proxy requests. We have found that sending a DELETE request with a content-length of 0 has an unexpected result:
What was the result you got?
The result is that the request that is sent on has both a transfer-encoding and a content-length header. Evidently, this is technically incorrect. We have two other servers in our systems which do not like this header combination and reject the request. (other servers don't seem to care)
What result did you expect?
Probably that if there is no content, that we do not set a transfer-encoding header?