postwait/node-amqp

Memory keeps growing steadily

moyukhbera opened this issue · 0 comments

I am using amqp 0.2.4. I observe that the memory for the process keeps increasing at a steady rate without even doing any actual work.

To isolate the issue I just ran a simple consumer with below lines of code

var amqp = require('amqp');
var rabbit = amqp.createConnection({url: 'amqp://username:pass@127.0.0.1:5672'});

rabbit.on('ready', function () {
    rabbit.queue('myqueuename', {'passive': true}, function (q) {
    });
});