whatap 0.5.20 → 0.5.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -139,7 +139,7 @@ ControlHandler.prototype.handle = async function (p) {
|
|
|
139
139
|
case ParamDef.GET_ENV:
|
|
140
140
|
try {
|
|
141
141
|
var mv = new MapValue();
|
|
142
|
-
let ignore_env_variable = conf.
|
|
142
|
+
let ignore_env_variable = conf.getProperty('ignore_env_variable_set', '');
|
|
143
143
|
let ignore_env_variable_set = ignore_env_variable ? new Set(ignore_env_variable.split(',').map(item => item.trim())) : new Set();
|
|
144
144
|
for (var k in process.env) {
|
|
145
145
|
if(ignore_env_variable_set.has(k)) {
|