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 251ce86 commit 30acbb8Copy full SHA for 30acbb8
src/cml.js
@@ -410,8 +410,8 @@ class CML {
410
async startRunner(opts = {}) {
411
const env = {};
412
const sensitive =
413
- ['CML_RUNNER_SENSITIVE_ENV'] +
414
- process.env.CML_RUNNER_SENSITIVE_ENV.split(':');
+ ['_CML_RUNNER_SENSITIVE_ENV'] +
+ process.env._CML_RUNNER_SENSITIVE_ENV.split(':');
415
for (const variable in process.env)
416
if (!sensitive.includes(variable)) env[variable] = process.env[variable];
417
return await this.getDriver().startRunner({ ...opts, env });
0 commit comments