Skip to content

Commit

Permalink
Updated comment (79-2)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Oct 18, 2024
1 parent e6a496b commit 44d4ecc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dh/dhe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ export async function createInteractiveConsoleQuery(
const heapSize = workerConfig?.heapSize ?? queryConstants.pqDefaultHeap;

// We have to use websockets since fetch over http2 is not sufficiently
// supported in the nodejs environment (v20 at time of this comment).
// supported in the nodejs environment bundled with `vscode` (v20 at time of
// this comment). Note that the `http` in the key name does not indicate
// insecure websockets. The connection will be a `wss:` secure connection.
const jvmArgs = workerConfig?.jvmArgs
? `'-Dhttp.websockets=true' ${workerConfig.jvmArgs}`
: '-Dhttp.websockets=true';
Expand Down

0 comments on commit 44d4ecc

Please sign in to comment.