fix(PortProxy): Increased default maxConnectionLifetime for PortProxy to 600000 ms

This commit is contained in:
2025-02-26 12:56:00 +00:00
parent 07a82a09be
commit 3bd7b70c19
3 changed files with 7 additions and 2 deletions

View File

@ -108,7 +108,7 @@ export class PortProxy {
this.settings = {
...settingsArg,
toHost: settingsArg.toHost || 'localhost',
maxConnectionLifetime: settingsArg.maxConnectionLifetime || 10000,
maxConnectionLifetime: settingsArg.maxConnectionLifetime || 600000,
};
}