keuss 1.6.13 → 1.6.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -938,9 +938,10 @@ class Factory extends QFactory_MongoDB_defaults {
938
938
 
939
939
  capabilities () {
940
940
  return {
941
- sched: false,
941
+ sched: true,
942
942
  reserve: true,
943
943
  pipeline: false,
944
+ tape: false,
944
945
  remove: true
945
946
  };
946
947
  }
@@ -340,7 +340,9 @@ class Factory extends QFactory_MongoDB_defaults {
340
340
  return {
341
341
  sched: false,
342
342
  reserve: false,
343
- pipeline: false
343
+ pipeline: false,
344
+ tape: false,
345
+ remove: true
344
346
  };
345
347
  }
346
348
  }
package/backends/mongo.js CHANGED
@@ -252,6 +252,7 @@ class Factory extends QFactory_MongoDB_defaults {
252
252
  sched: true,
253
253
  reserve: true,
254
254
  pipeline: false,
255
+ tape: false,
255
256
  remove: true
256
257
  };
257
258
  }
@@ -161,6 +161,7 @@ class Factory extends QFactory_MongoDB_defaults {
161
161
  sched: true,
162
162
  reserve: true,
163
163
  pipeline: true,
164
+ tape: false,
164
165
  remove: true
165
166
  };
166
167
  }
@@ -127,7 +127,9 @@ class Factory extends QFactory {
127
127
  return {
128
128
  sched: false,
129
129
  reserve: false,
130
- pipeline: false
130
+ pipeline: false,
131
+ tape: false,
132
+ remove: true
131
133
  };
132
134
  }
133
135
  }
@@ -150,6 +150,7 @@ class Factory extends QFactory {
150
150
  sched: true,
151
151
  reserve: true,
152
152
  pipeline: false,
153
+ tape: false,
153
154
  remove: true
154
155
  };
155
156
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keuss",
3
- "version": "1.6.13",
3
+ "version": "1.6.14",
4
4
  "keywords": [
5
5
  "queue",
6
6
  "persistent",
@@ -87,7 +87,7 @@ class RPSSignalFactory {
87
87
  }
88
88
 
89
89
  static Type () {return 'signal:redis-pubsub'}
90
- type () {return Type ()}
90
+ type () {return RPSSignalFactory.Type ()}
91
91
 
92
92
  signal (channel, opts) {
93
93
  debug ('creating redis-pubsub signaller with opts %o', opts);