diff options
author | osddeitf <37999210+osddeitf@users.noreply.github.com> | 2023-08-28 14:32:54 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-28 09:32:54 +0200 |
commit | c2547ba039096d2f8e07a2fd89360956ac94014a (patch) | |
tree | 0b08421954e4a618ce5d59f08f81f27dc112579e /tools | |
parent | d22a6663fa0349acb6a68c53fdcbfac0426555d2 (diff) |
fix(node/http): correctly send `Content-length` header instead of `Transfer-Encoding: chunked` (#20127)
Fix #20063.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/node_compat/TODO.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/node_compat/TODO.md b/tools/node_compat/TODO.md index cb0da2d8a..841f435e0 100644 --- a/tools/node_compat/TODO.md +++ b/tools/node_compat/TODO.md @@ -3,7 +3,7 @@ NOTE: This file should not be manually edited. Please edit `cli/tests/node_compat/config.json` and run `deno task setup` in `tools/node_compat` dir instead. -Total: 2934 +Total: 2933 - [abort/test-abort-backtrace.js](https://github.com/nodejs/node/tree/v18.12.1/test/abort/test-abort-backtrace.js) - [abort/test-abort-fatal-error.js](https://github.com/nodejs/node/tree/v18.12.1/test/abort/test-abort-fatal-error.js) @@ -1002,7 +1002,6 @@ Total: 2934 - [parallel/test-http-connect-req-res.js](https://github.com/nodejs/node/tree/v18.12.1/test/parallel/test-http-connect-req-res.js) - [parallel/test-http-connect.js](https://github.com/nodejs/node/tree/v18.12.1/test/parallel/test-http-connect.js) - [parallel/test-http-content-length-mismatch.js](https://github.com/nodejs/node/tree/v18.12.1/test/parallel/test-http-content-length-mismatch.js) -- [parallel/test-http-content-length.js](https://github.com/nodejs/node/tree/v18.12.1/test/parallel/test-http-content-length.js) - [parallel/test-http-contentLength0.js](https://github.com/nodejs/node/tree/v18.12.1/test/parallel/test-http-contentLength0.js) - [parallel/test-http-correct-hostname.js](https://github.com/nodejs/node/tree/v18.12.1/test/parallel/test-http-correct-hostname.js) - [parallel/test-http-createConnection.js](https://github.com/nodejs/node/tree/v18.12.1/test/parallel/test-http-createConnection.js) |