whatap 2.0.2-canary.0 → 2.0.2

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.
@@ -367,7 +367,10 @@ var Configuration = (function() {
367
367
  var ignoreUrls = props.split(',');
368
368
  configInstance._trace_ignore_url_set = {};
369
369
  for(var i = 0; i < ignoreUrls.length; i++){
370
- var ignoreUrl = ignoreUrls[i];
370
+ var ignoreUrl = ignoreUrls[i].trim();
371
+ if(ignoreUrl.length === 0){
372
+ continue;
373
+ }
371
374
  var serviceHash = HashUtil.hashFromString(ignoreUrl);
372
375
  configInstance._trace_ignore_url_set[serviceHash] = true;
373
376
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "whatap",
3
3
  "homepage": "http://www.whatap.io",
4
- "version": "2.0.2-canary.0",
5
- "releaseDate": "20260611",
4
+ "version": "2.0.2",
5
+ "releaseDate": "20260612",
6
6
  "description": "Monitoring and Profiling Service",
7
7
  "main": "index.js",
8
8
  "scripts": {},