You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -54,15 +54,13 @@ public RabbitMqConsumer(RabbitMQMessageSubscriberService subscriberService, stri
54
54
_messages.Add(eventArgs.Message);
55
55
subscriberService.Acknowledge(eventArgs.Message);
56
56
_outputHelper.WriteLine($"{DateTime.UtcNow} - {queueName} message received with correlation ID={eventArgs.Message.CorrelationId}, delivery tag={eventArgs.Message.DeliveryTag}");
57
-
MessageWaitHandle?.Signal();
58
57
});
59
58
}
60
59
61
-
publicvoidSetupMessageHandle(intcount)
60
+
publicvoidClearMessages()
62
61
{
63
-
_outputHelper.WriteLine($"Expecting {count}{_queueName}messages from RabbitMQ");
62
+
_outputHelper.WriteLine($"Clearing messages received from RabbitMQ");
0 commit comments