fix(terminal): change --port=9997 to --port 9997 and remove --headless
This commit is contained in:
@@ -44,7 +44,7 @@ class TerminalService {
|
||||
}
|
||||
|
||||
private getExeArgs(): string[] {
|
||||
return [`--port=${this.port.toString()}`, '--headless'];
|
||||
return ['--port', this.port.toString()];
|
||||
}
|
||||
|
||||
private async checkHealth(): Promise<boolean> {
|
||||
|
||||
Reference in New Issue
Block a user