Description
Is there an existing issue for this?
- I have searched the existing issues
Current behavior
The req.on('close') event is not emitting when the content-type: applicaiton/json header is set. This makes no sense, the content-type header should not change the behavior when the connection is closed. This use to work, the behavior has somehow changed in either upgrade 7 or 8. We just observed this behavior, but we have done several nestjs upgrades and we are not sure when the behavior started. This took an extremely long time to track down, and is rather critical to our workflow, can please advise a temp workaround for us would be very helpful!!
Minimum reproduction code
https://github.com/elucidsoft/nestjs-broken-middleware
Steps to reproduce
- npm i
- npm run start:debug
Working without Header
- Use insomnia or curl or whatever tool you want to post to the http://localhost:3020/test endpoint, with the
content-type:
header NOT set. - Examine console output of 'Inside test', followed by '-- Connection Closed --'
- Event emitted properly.
Broken with application/json Content-Type header
- Use insomnia or curl or whatever tool you want to post to the http://localhost:3020/test endpoint, with the
content-type: application/json
header set. - Examing console output of only 'Inside test' but no '-- Connection Closed --'
- Event did NOT emit properly.
Expected behavior
Event should emit no matter the content-type set.
Package
- I don't know. Or some 3rd-party package
-
@nestjs/common
-
@nestjs/core
-
@nestjs/microservices
-
@nestjs/platform-express
-
@nestjs/platform-fastify
-
@nestjs/platform-socket.io
-
@nestjs/platform-ws
-
@nestjs/testing
-
@nestjs/websockets
- Other (see below)
Other package
No response
NestJS version
9.1.4
Packages versions
"dependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
"body-parser": "^1.20.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@nestjs/cli": "^8.0.0",
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"supertest": "^6.2.4",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
I also verified this is broken in 8.x
Node.js version
16.14.2
In which operating systems have you tested?
- macOS
- Windows
- Linux
Other
I verified this behavior on multiple platforms of Linux, inside docker, and outside docker, with multiple REST clients. All observed same behavior.