redis-smq 6.2.3 → 6.2.4

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 6.2.4 (2022-02-23)
4
+
5
+ * Fix consuming-messages/test00015 error (c5c365a)
6
+
3
7
  ## 6.2.3 (2022-02-23)
4
8
 
5
9
  * Bump up redis-smq-monitor to v6.5.3 (4e845d0)
@@ -4,7 +4,7 @@ exports.MessageHandlerAlreadyExistsError = void 0;
4
4
  const consumer_error_1 = require("./consumer.error");
5
5
  class MessageHandlerAlreadyExistsError extends consumer_error_1.ConsumerError {
6
6
  constructor(queue, usingPriorityQueuing) {
7
- super(`A message handler for ${usingPriorityQueuing ? 'priority ' : ''} queue [${JSON.stringify(queue)}] already exists`);
7
+ super(`A message handler for ${usingPriorityQueuing ? 'priority ' : ''}queue [${JSON.stringify(queue)}] already exists`);
8
8
  }
9
9
  }
10
10
  exports.MessageHandlerAlreadyExistsError = MessageHandlerAlreadyExistsError;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-smq",
3
- "version": "6.2.3",
3
+ "version": "6.2.4",
4
4
  "description": "A simple high-performance Redis message queue for Node.js.",
5
5
  "author": "Weyoss <weyoss@protonmail.com>",
6
6
  "license": "MIT",