New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

celery-client

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

celery-client - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

4

handlers/redisHandler.js

@@ -180,2 +180,6 @@ 'use strict';

if (metaTaskIds.length <= 0) {
return callback(null, []);
}
self._handler.mget(metaTaskIds, function(err, result) {

@@ -182,0 +186,0 @@ if (err) return callback(err);

2

package.json
{
"name": "celery-client",
"version": "0.1.0",
"version": "0.1.1",
"description": "A client for Celery",

@@ -5,0 +5,0 @@ "main": "celery-client.js",

@@ -25,9 +25,11 @@ # celery-client

}
celeryClient.putTask('your-celery-project.task', args, kwargs, taskOptions, function(err, taskId) {
celeryClient.onResult(taskId, function(err, res) {
console.log('Result >', res);
celeryClient.putTask('your-celery-project.task', args, kwargs, taskOptions,
function(err, taskId) {
console.log('Task >', taskId);
},
function(err, result) {
console.log('Result >', result);
process.exit();
});
});
}
);
```

@@ -34,0 +36,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc