☕ Rodolfo Ripado
☕ Rodolfo Ripado
I don't see the point in making the worker declare queues and exchanges. All that should be defined in RMQ config. If we want to keep the worker simple, then...
At the moment we can only send logs to files. It would be nice (and necessary for my usecase) to be able to send them anywhere (syslog, logstash, ...). Is...
I see that the handling of custom exit codes from the executed command hasn't been implemented in branch 2.0. Why ? I'm a heavy user of the NACK with requeue=false...
Before refactoring code to handle all the stuff proposed in #6 , it would be better to agree on a general strategy. As we add options and configurability to the...
Why does the following code output 1 instead of 2 ? (nconf version = 0.7.1) ``` js 'use strict'; var conf = require('nconf'); conf.defaults({ bingo: 1, }); conf.set('bingo', 2); console.log(conf.get('bingo'));...