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
|
@@ -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 ' : ''}
|
|
7
|
+
super(`A message handler for ${usingPriorityQueuing ? 'priority ' : ''}queue [${JSON.stringify(queue)}] already exists`);
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
exports.MessageHandlerAlreadyExistsError = MessageHandlerAlreadyExistsError;
|