@autofleet/rabbit 3.2.25-beta.102 → 3.2.25-beta.103
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/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -493,7 +493,7 @@ class RabbitMq {
|
|
|
493
493
|
const assertExchange = await (0, utils_1.assertExchangeFanout)(c, exchange);
|
|
494
494
|
await c.assertQueue(queue);
|
|
495
495
|
this.exchanges[exchange] = assertExchange;
|
|
496
|
-
await c.prefetch(limit,
|
|
496
|
+
await c.prefetch(limit, false);
|
|
497
497
|
return Promise.all([
|
|
498
498
|
c.bindQueue(queue, exchange, ''),
|
|
499
499
|
this.consume(queue, callback, options),
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -668,7 +668,7 @@ class RabbitMq implements IAfRabbitMq {
|
|
|
668
668
|
const assertExchange = await assertExchangeFanout(c, exchange);
|
|
669
669
|
await c.assertQueue(queue);
|
|
670
670
|
this.exchanges[exchange] = assertExchange;
|
|
671
|
-
await c.prefetch(limit,
|
|
671
|
+
await c.prefetch(limit, false);
|
|
672
672
|
return Promise.all([
|
|
673
673
|
c.bindQueue(queue, exchange, ''),
|
|
674
674
|
this.consume(
|