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

kafka-node

Package Overview
Dependencies
Maintainers
1
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kafka-node - npm Package Compare versions

Comparing version 0.2.6 to 0.2.7

18

lib/zookeeper.js

@@ -210,11 +210,2 @@ 'use strict';

var brokers = {};
function getBrokerDetail (id, cb) {
var path = '/brokers/ids/' + id;
that.client.getData(path,function (err, data) {
if (err) return cb(err);
brokers[id] = JSON.parse(data.toString());
cb();
});
}
async.each(children, getBrokerDetail, function (err) {

@@ -236,2 +227,11 @@ if (err) return cb(err);

}
function getBrokerDetail (id, cb) {
var path = '/brokers/ids/' + id;
that.client.getData(path,function (err, data) {
if (err) return cb(err);
brokers[id] = JSON.parse(data.toString());
cb();
});
}
}

@@ -238,0 +238,0 @@ );

{
"name": "kafka-node",
"description": "node client for Apache kafka, only support kafka 0.8 and above",
"version": "0.2.6",
"version": "0.2.7",
"main": "kafka.js",

@@ -6,0 +6,0 @@ "dependencies": {

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