This commit is contained in:
Juergen Kunz 2025-06-06 15:00:46 +00:00
parent 233c98e5ff
commit 578d1ba2f7

View File

@ -199,9 +199,8 @@ export class RouteConnectionHandler {
setupSocketHandlers(
underlyingSocket,
(reason) => {
// Only cleanup if connection hasn't been fully established
// Check if outgoing connection exists and is connected
if (!record.outgoing || record.outgoing.readyState !== 'open') {
// Always cleanup when incoming socket closes
// This prevents connection accumulation in proxy chains
logger.log('debug', `Connection ${connectionId} closed during immediate routing: ${reason}`, {
connectionId,
remoteIP: record.remoteIP,
@ -211,13 +210,18 @@ export class RouteConnectionHandler {
component: 'route-handler'
});
// If there's a pending outgoing connection, destroy it
// If there's a pending or established outgoing connection, destroy it
if (record.outgoing && !record.outgoing.destroyed) {
logger.log('debug', `Destroying outgoing connection for ${connectionId}`, {
connectionId,
outgoingState: record.outgoing.readyState,
component: 'route-handler'
});
record.outgoing.destroy();
}
// Always cleanup the connection record
this.connectionManager.cleanupConnection(record, reason);
}
},
undefined, // Use default timeout handler
'immediate-route-client'