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 36da045 commit aca6c5bCopy full SHA for aca6c5b
src/cml.js
@@ -404,8 +404,8 @@ class CML {
404
async startRunner(opts = {}) {
405
const env = {};
406
const sensitive =
407
- ['CML_RUNNER_SENSITIVE_ENV'] +
408
- process.env.CML_RUNNER_SENSITIVE_ENV.split(':');
+ ['_CML_RUNNER_SENSITIVE_ENV'] +
+ process.env._CML_RUNNER_SENSITIVE_ENV.split(':');
409
for (const variable in process.env)
410
if (!sensitive.includes(variable)) env[variable] = process.env[variable];
411
return await this.getDriver().startRunner({ ...opts, env });
0 commit comments