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.get('ignore_env_variable_set', '');
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)) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "whatap",
3
3
  "homepage": "http://www.whatap.io",
4
- "version": "0.5.20",
4
+ "version": "0.5.21",
5
5
  "releaseDate": "20250626",
6
6
  "description": "Monitoring and Profiling Service",
7
7
  "main": "index.js",