Skip to content

Commit c8d3296

Browse files
committed
revert change
1 parent 7adc7c2 commit c8d3296

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/workflow/languageServer.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,13 @@ export async function initLanguageServer(context: vscode.ExtensionContext) {
4646
if (isNode()) {
4747
const debugOptions = {execArgv: ["--nolazy", "--inspect=6010"]};
4848

49-
const env = {
50-
NODE_EXTRA_CA_CERTS: process.env.NODE_EXTRA_CA_CERTS,
51-
}
52-
5349
const serverModule = context.asAbsolutePath(path.join("dist", "server-node.js"));
5450
const serverOptions: ServerOptions = {
55-
run: {module: serverModule, transport: TransportKind.ipc, options: {env}},
51+
run: {module: serverModule, transport: TransportKind.ipc},
5652
debug: {
5753
module: serverModule,
5854
transport: TransportKind.ipc,
59-
options: {env, ...debugOptions }
55+
options: debugOptions
6056
}
6157
};
6258

0 commit comments

Comments
 (0)