Skip to content

Commit 098550c

Browse files
committed
Use port 6010
1 parent bd2234f commit 098550c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"name": "Attach to Language-Server",
1717
"address": "localhost",
1818
"protocol": "inspector",
19-
"port": 6009,
19+
"port": 6010,
2020
"smartStep": true,
2121
"sourceMaps": true,
2222
},

src/workflow/languageServer.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ let client: LanguageClient;
99
export async function initLanguageServer(context: vscode.ExtensionContext) {
1010
const serverModule = context.asAbsolutePath(path.join("dist", "server-node.js"));
1111

12-
const debugOptions = {execArgv: ["--nolazy", "--inspect=6009"]};
12+
// 6009 is used by redhat yaml extension
13+
const debugOptions = {execArgv: ["--nolazy", "--inspect=6010"]};
1314

1415
const serverOptions: ServerOptions = {
1516
run: {module: serverModule, transport: TransportKind.ipc},

0 commit comments

Comments
 (0)