fivebeans
fivebeans copied to clipboard
Obsolete documentation for yaml configuration
In version 1.4.1 we used to put host and port inside beanstalk:
var options = {
id: this.id,
host: config.beanstalkd.host,
port: config.beanstalkd.port,
handlers: config.handlers,
ignoreDefault: config.ignoreDefault
};
It was changed in this commit. And now in version 1.5.0 we put host and port just inside config:
var options =
{
id: 'worker_4',
host: '127.0.0.1',
port: 11300,
handlers:
{
emitkeys: require('./emitkeyshandler')()
},
ignoreDefault: true
}
But documantation about it for yaml configuration hasn't been updated:
beanstalkd:
host: "127.0.0.1"
port: 11300
watch:
- 'circle'
- 'picadilly'
- 'northern'
- 'central'
handlers:
- "./handlers/holborn.js"
- "./handlers/greenpark.js"
- "./handlers/knightsbridge.js"
ignoreDefault: true
👍 no update ?
I do not have time to work on this project right now (too busy working on the npm registry itself!). If one of you would like to take over the project, I'd be more than happy to transfer both the repo & the npm package. Please let me know!
I am interested, but i don't have a lot of time (children, work). Can you give the access for both of us ?