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.7 to 0.2.8

3

lib/client.js

@@ -69,2 +69,5 @@ 'use strict';

});
zk.on('error', function (err) {
self.emit('error', err);
});
}

@@ -71,0 +74,0 @@

12

lib/zookeeper.js

@@ -205,4 +205,7 @@ 'use strict';

function (error, children) {
if (error)
return console.log('Failed to list children of node: %s due to: %s.', path, error);
if (error) {
console.log('Failed to list children of node: %s due to: %s.', path, error);
that.emit('error', error);
return;
}

@@ -212,3 +215,6 @@ if (children.length) {

async.each(children, getBrokerDetail, function (err) {
if (err) return cb(err);
if (err) {
that.emit('error', error);
return;
}
if (!that.inited) {

@@ -215,0 +221,0 @@ that.emit('init', brokers);

{
"name": "kafka-node",
"description": "node client for Apache kafka, only support kafka 0.8 and above",
"version": "0.2.7",
"version": "0.2.8",
"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