Socket
Socket
Sign inDemoInstall

couchdb-worker

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

couchdb-worker - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

14

lib/worker.js

@@ -39,6 +39,5 @@ /*

// config and status id
if (config.config_id && typeof config.config_id !== 'string') throw('config_id must be a string!');
this.config_id = config.config_id || 'worker-config/' + this.name;
if (config.status_id && typeof config.status_id !== 'string') throw('status_id must be a string!');
this.status_id = config.status_id || 'worker-status/' + this.name;
// TODO: maybe use '$worker-config/' + this.name;
this.config_id = 'worker-config/' + this.name;
this.status_id = 'worker-status/' + this.name;

@@ -172,2 +171,9 @@ // batch size defaults to 10

// ignore worker configs
if (doc._id.match(/^worker-config\//)) return false;
// ignore worker status
if (doc._id.match(/^worker-status\//)) return false;
this.docs_checked++;

@@ -174,0 +180,0 @@

{
"name": "couchdb-worker",
"description": "This is a base couchdb worker that manages worker status.",
"version": "0.4.4",
"description": "This is an abstract CouchDB worker that manages worker status and handle attachment processing.",
"keywords": ["CouchDB", "attachments", "worker", "abstract"],
"homepage": "https://github.com/jo/couchdb-worker",
"bugs": {
"url" : "http://github.com/jo/couchdb-worker/issues",
"email" : "schmidt@netzmerk.com"
},
"author": {
"name": "Johannes J. Schmidt",
"url": "http://github.com/jo",
"email": "schmidt@netzmerk.com"
"email": "schmidt@netzmerk.com",
"url": "http://die-tf.de"
},
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/jo/couchdb-worker"
},
"dependencies": {

@@ -11,0 +21,0 @@ "request": "*",

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