1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Allow unlimited event listeners on mqttConnectionPool

Fixes #71
This commit is contained in:
Nicholas O'Leary 2013-11-13 15:00:55 +00:00
parent 848a69dc26
commit 8426c9802b

View File

@ -30,6 +30,7 @@ module.exports = {
if (!connections[id]) {
connections[id] = function() {
var client = mqtt.createClient(port,broker);
client.setMaxListeners(0);
var options = {keepalive:15,clientId:'mqtt_' + (1+Math.random()*4294967295).toString(16)};
var queue = [];
var subscriptions = [];