We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 952a266 commit 3d02e74Copy full SHA for 3d02e74
src/interceptors/terminal/existing-terminal-interceptor.ts
@@ -35,6 +35,8 @@ export class ExistingTerminalInterceptor implements Interceptor {
35
36
async activate(proxyPort: number): Promise<{ port: number }> {
37
if (this.servers[proxyPort]) {
38
+ // Reset isActive, so we wait again for a new request
39
+ this.servers[proxyPort].isActive = false;
40
return { port: this.servers[proxyPort].server.port };
41
}
42
0 commit comments