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 232d117 commit 35c78b5Copy full SHA for 35c78b5
rust/js-wrapper/process.ts
@@ -16,6 +16,8 @@ interface StartProcessOptions extends CubeStoreHandlerOptions {
16
17
async function startProcess(pathToExecutable: string, config: Readonly<StartProcessOptions>) {
18
const env: Record<string, string> = {
19
+ // inherit all env variables from node
20
+ ...process.env,
21
CUBESTORE_PORT: '13306', // TODO MySQL port. Remove it when it becomes optional.
22
CUBESTORE_SELECT_WORKERS: '0',
23
};
0 commit comments