concurix-traceaggregator
Advanced tools
Comparing version 1.2.0 to 1.2.1
{ | ||
"name": "concurix-traceaggregator", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Aggregation of trace data for the concurix tracer", | ||
@@ -5,0 +5,0 @@ "main": "traceaggregator.js", |
@@ -263,2 +263,6 @@ "use strict"; | ||
var segment = this.cache[segId] | ||
if (segment == null) { | ||
// We got lost...? | ||
return [] | ||
} | ||
// Is this segment the end of transactionId? | ||
@@ -274,3 +278,3 @@ if (segment.incomingTxs[transactionId] != null) { | ||
target = this.targets[outgoing[i]] | ||
if (seenCache[target]) { | ||
if (target == null || seenCache[target]) { | ||
// Don't get stuck in a loop | ||
@@ -289,3 +293,3 @@ continue | ||
target = this.targets[outgoingTxs[j]] | ||
if (seenCache[target]) { | ||
if (target == null || seenCache[target]) { | ||
// Don't get stuck in a loop | ||
@@ -292,0 +296,0 @@ continue |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13395
399