We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d6702e commit 19ac343Copy full SHA for 19ac343
2 files changed
OpenFlow/src/amqpwrapper.ts
@@ -368,10 +368,15 @@ export class amqpwrapper {
368
}
369
async checkQueue(queue: string): Promise<boolean> {
370
if (Config.amqp_check_for_consumer) {
371
+ var q: amqpqueue = this.queues[queue];
372
+
373
var test: AssertQueue = null;
374
try {
375
// var test: AssertQueue = await this.channel.assertQueue(this.queue, this.AssertQueueOptions);
376
test = await this.channel.checkQueue(queue);
377
+ if (q != null) {
378
+ q.ok = test;
379
+ }
380
} catch (error) {
381
test = null;
382
VERSION
@@ -1 +1 @@
1
-1.0.16
+1.0.17
0 commit comments