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 59dd29e commit 4902e6fCopy full SHA for 4902e6f
rust/cubestore/js-wrapper/src/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