Skip to content

Commit

Permalink
removed timers for trust boundary event generation
Browse files Browse the repository at this point in the history
  • Loading branch information
sumitsuthar committed Oct 15, 2024
1 parent 15d705c commit 7f00abc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nr-security-agent/lib/core/sec-util.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function generateSecEvent(securityMetadata) {

let apiId = shaUtil.getSHA256ForData(traceObject.stacktrace.join('|') + uri);
apiId = securityMetadata.eventType + HYPHEN + apiId;
if (securityMetadata.eventType == SECURE_COOKIE || securityMetadata.eventType == TRUSTBOUNDARY) {
if (securityMetadata.eventType == SECURE_COOKIE) {
if (insecureSettingApiIdSet.has(apiId)) {
return;
}
Expand Down

0 comments on commit 7f00abc

Please sign in to comment.