fix(PortProxy): Increased default maxConnectionLifetime for PortProxy to 600000 ms
This commit is contained in:
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/smartproxy',
|
||||
version: '3.14.0',
|
||||
version: '3.14.1',
|
||||
description: 'A robust and versatile proxy package designed to handle high workloads, offering features like SSL redirection, port proxying, WebSocket support, and customizable routing and authentication.'
|
||||
}
|
||||
|
@ -108,7 +108,7 @@ export class PortProxy {
|
||||
this.settings = {
|
||||
...settingsArg,
|
||||
toHost: settingsArg.toHost || 'localhost',
|
||||
maxConnectionLifetime: settingsArg.maxConnectionLifetime || 10000,
|
||||
maxConnectionLifetime: settingsArg.maxConnectionLifetime || 600000,
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user