File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -2087,6 +2087,12 @@ class Server {
2087
2087
2088
2088
if ( newProxyConfig !== proxyConfig ) {
2089
2089
proxyConfig = newProxyConfig ;
2090
+ const socket = req . socket != null ? req . socket : req . connection ;
2091
+ // @ts -ignore
2092
+ const server = socket != null ? socket . server : null ;
2093
+ if ( server ) {
2094
+ server . removeAllListeners ( "close" ) ;
2095
+ }
2090
2096
proxyMiddleware =
2091
2097
/** @type {RequestHandler } */
2092
2098
( getProxyMiddleware ( proxyConfig ) ) ;
Original file line number Diff line number Diff line change @@ -75,9 +75,21 @@ const proxyOption = [
75
75
} ,
76
76
] ;
77
77
78
+ let maxServerListeners = 0 ;
78
79
const proxyOptionOfArray = [
79
80
{ context : "/proxy1" , target : `http://localhost:${ port1 } ` } ,
80
81
function proxy ( req , res , next ) {
82
+ if ( req != null ) {
83
+ const socket = req . socket != null ? req . socket : req . connection ;
84
+ // @ts -ignore
85
+ const server = socket != null ? socket . server : null ;
86
+ if ( server ) {
87
+ maxServerListeners = Math . max (
88
+ maxServerListeners ,
89
+ server . listeners ( "close" ) . length
90
+ ) ;
91
+ }
92
+ }
81
93
return {
82
94
context : "/api/proxy2" ,
83
95
target : `http://localhost:${ port2 } ` ,
@@ -463,6 +475,10 @@ describe("proxy option", () => {
463
475
expect ( response . statusCode ) . toEqual ( 200 ) ;
464
476
expect ( response . text ) . toEqual ( "foo+next+function" ) ;
465
477
} ) ;
478
+
479
+ it ( "should not exist multiple close events registered" , async ( ) => {
480
+ expect ( maxServerListeners ) . toBeLessThanOrEqual ( 1 ) ;
481
+ } ) ;
466
482
} ) ;
467
483
468
484
describe ( "as an array without the `route` option" , ( ) => {
You can’t perform that action at this time.
0 commit comments