whatap 0.4.64 → 0.4.66
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.
|
@@ -30,8 +30,8 @@ const REFERER = new HashedData(TextTypes.REFERER, 1000);
|
|
|
30
30
|
const HTTP_DOMAIN = new HashedData(TextTypes.HTTP_DOMAIN, 500);
|
|
31
31
|
const MTRACE_SPEC = new HashedData(TextTypes.MTRACE_SPEC, 500);
|
|
32
32
|
const MTRACE_CALLER_URL = new HashedData(TextTypes.MTRACE_CALLER_URL, 500);
|
|
33
|
-
const OKIND = new HashedData(TextTypes.OKIND_NAME,
|
|
34
|
-
const ONODE = new HashedData(TextTypes.ONODE_NAME,
|
|
33
|
+
const OKIND = new HashedData(TextTypes.OKIND_NAME, 100);
|
|
34
|
+
const ONODE = new HashedData(TextTypes.ONODE_NAME, 100);
|
|
35
35
|
|
|
36
36
|
var DataTextAgent = function () {
|
|
37
37
|
|
|
@@ -135,7 +135,7 @@ var SecurityMaster = {
|
|
|
135
135
|
var onodeStr= process.env.WHATAP_ONODE || Configuration.getProperty('whatap.onode');
|
|
136
136
|
if(onodeStr && onodeStr.length>0){
|
|
137
137
|
this.ONODE = HashUtil.hashFromString(onodeStr);
|
|
138
|
-
this.ONODE_NAME=
|
|
138
|
+
this.ONODE_NAME=onodeStr;
|
|
139
139
|
}else{
|
|
140
140
|
this.ONODE = 0;
|
|
141
141
|
this.ONODE_NAME=null;
|
package/package.json
CHANGED