We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am pushing a job to the queue as such :
Queue.use(Config.beanstalkd.tube, function(err, tname){ Queue.put(0,15,60,JSON.stringify(['aggregator', job1]),onJobPushedToQueue); });
I have a simple worker like so :
module.exports = function() { function aggregatorWorker() { this.type = 'aggregator'; } aggregatorWorker.prototype.work = function (payload, callback) { console.log('payload', payload); callback('success'); }; var handler = new aggregatorWorker(); return handler; };
And the moment i push the job to queue it gets processed. according to the documentation, shouldn't this be executed at least 15sec later?
Running on ubuntu @Version 1.10+1+g86231ba
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am pushing a job to the queue as such :
I have a simple worker like so :
And the moment i push the job to queue it gets processed. according to the documentation, shouldn't this be executed at least 15sec later?
Running on ubuntu @Version 1.10+1+g86231ba
The text was updated successfully, but these errors were encountered: