rascal 14.0.0 → 14.0.1

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
  # Change Log
2
2
 
3
+ ## 14.0.1
4
+
5
+ - Fixes https://github.com/guidesmiths/rascal/issues/178
6
+
3
7
  ## 14.0.0
4
8
 
5
9
  - Rather than waiting an arbitrary time for channels to close when cancelling a subscription, Rascal now waits until any outstanding messages have been acknowledged. By default, Rascal will wait indefinitely, but this behaviour can be overriden by specifying a subscription.closeTimeout. If the timeout is exceeded following a direct call to `broker.unsubscribeAll` or `subscription.cancel` then an error will be yielded. If the timeout is exceeded following an indirect call to `subscription.cancel` (e.g. by `broker.shutdown`) then an error will be emitted but the operation will be allowed to continue.
package/lib/amqp/Vhost.js CHANGED
@@ -403,6 +403,7 @@ function Vhost(config) {
403
403
 
404
404
  channel._rascal_id = channelId;
405
405
  channel.connection._rascal_id = connection._rascal_id;
406
+ channel.connection.setMaxListeners(0);
406
407
  debug('Created %s channel: %s from connection: %s', getChannelMode(confirm), channel._rascal_id, connection._rascal_id);
407
408
 
408
409
  // See https://github.com/squaremo/amqp.node/issues/388
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rascal",
3
- "version": "14.0.0",
3
+ "version": "14.0.1",
4
4
  "description": "A config driven wrapper for amqplib supporting multi-host connections, automatic error recovery, redelivery flood protection, transparent encryption / decryption, channel pooling and publication timeouts",
5
5
  "main": "index.js",
6
6
  "dependencies": {