Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

concurix-traceaggregator

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

concurix-traceaggregator - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc