NodeJS警告:可能的事件发射器泄漏。增加了11个开放的听众

时间:2017-05-19 04:05:18

标签: javascript node.js memory-leaks node-modules

我正在使用NodeJS和WS来测试websockets。要从服务器卸载一些工作,我想将ping从客户端发送到服务器而不是相反。但是,每当我运行我的代码时,我都会收到此错误:

> (node) warning: possible EventEmitter memory leak detected. 11 pong listeners added. Use emitter.setMaxListeners() to increase limit.
Trace
    at WebSocket.addListener (events.js:239:17)
    at Object.<anonymous> (/home/ubuntu/NodeJS-Runtime/websockets/client.js:40:12)
    at Module._compile (module.js:410:26)
    at Object.Module._extensions..js (module.js:417:10)
    at Module.load (module.js:344:32)
    at Function.Module._load (module.js:301:12)
    at Function.Module.runMain (module.js:442:10)
    at startup (node.js:136:18)
    at node.js:966:3

这是我的代码:

for(var i=0; i<20; i++) {
    const clientNum = i;
    const ws = new WebSocket('ws://localhost:8080', {
    perMessageDeflate: false
        });

    ws.onerror = function(error) {
        if(!hasFailed && clientNum != 0)
            console.log('failed on: ' + clientNum + error);
        hasFailed = true;
    }

    ws.on('open', function() {
        // Send keep alive messages. Close if no response.
        ws.keepAlive = false;
        var interval = setInterval(function() {
            if (ws.keepAlive) {
                ws.close();
            } else {
                ws.ping(null, null, true);
                ws.keepAlive = true;
            }
        }, 25*1000); // milliseconds between pings

    });
    ws.on("pong", function() { 
            ws.keepAlive = false; 
    });

我的pong和'on'函数都出现了这个错误。

1 个答案:

答案 0 :(得分:1)

这不是错误,这是一个警告。如果要禁用警告,请调用ws.setMaxListeners(0)表示您知道自己设置了10个以上的侦听器,以便运行时可以看到您知道自己在做什么。

此外,设置ws.onerror属性是不好的做法。相反,您需要致电ws.on('error', function (error) {...,但这与您提出的问题无关。