File tree 2 files changed +25
-1
lines changed 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -755,7 +755,7 @@ function resetHeadersTimeoutOnReqEnd() {
755
755
const parser = this . socket . parser ;
756
756
// Parser can be null if the socket was destroyed
757
757
// in that case, there is nothing to do.
758
- if ( parser !== null ) {
758
+ if ( parser ) {
759
759
parser . parsingHeadersStart = nowDate ( ) ;
760
760
}
761
761
}
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ const common = require ( '../common' ) ;
4
+
5
+ const http = require ( 'http' ) ;
6
+
7
+ const server = http . createServer ( common . mustCall ( ( req , res ) => {
8
+ res . writeHead ( 200 , { 'Content-Type' : 'text/plain' } ) ;
9
+ res . write ( 'okay' , common . mustCall ( ( ) => {
10
+ delete res . socket . parser ;
11
+ } ) ) ;
12
+ res . end ( ) ;
13
+ } ) ) ;
14
+
15
+ server . listen ( 1337 , '127.0.0.1' ) ;
16
+ server . unref ( ) ;
17
+
18
+ const req = http . request ( {
19
+ port : 1337 ,
20
+ host : '127.0.0.1' ,
21
+ method : 'GET' ,
22
+ } ) ;
23
+
24
+ req . end ( ) ;
You can’t perform that action at this time.
0 commit comments