fivebeans icon indicating copy to clipboard operation
fivebeans copied to clipboard

A beanstalkd client for node.js & a simple framework for running beanstalkd workers.

Results 102 fivebeans issues
Sort by recently updated
recently updated
newest added

### What this PR does? - Update Readme.md file - Update `examples/exampleconfig.yml` ### Any context you can provicde - `lib/worker.js` is not taking the configuration over beanstalkd key, which causes...

The current travis-ci build is failing to start `beanstalkd`. This is because the argument `-d` is not recognized by the `beanstalkd` application (perhaps it was in a previous version of...

This set of updates will upgrade the fivebeans dependencies (which will get rid of all but one security finding).

Added instructions for running tests

I'm new to Beanstalkd. I'm trying to use the stats_job method in a worker, like this: ``` worker.client.stats_job(job_info.id, function(err, stats) { if(!err) { if(stats.buries !== 0) { worker.client.destroy(stats.id, function(err) {});...

Is WATCH not allowed while in RESERVE call? Is this the way beanstalkd works or is it fivebeans? In the below code, first reserve command is run and then watch...

We're starting to see jobs showing up in the wrong tube in production. It appears to be a race condition. Our code looks like this: ``` stalk.use(tube, function(err, tubename) {...

Looks like [email protected] > [email protected] has security vulnerability. more about the vulterability here: https://snyk.io/vuln/npm:lodash:20180130

Is there a way to limit number of workers that can be run at the same time?