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
Fix payload assembler not respecting user configured timeout window (#330)
* Fix payload assembler not respecting user configured timeout window
Signed-off-by: Victor Chang <[email protected]>
* Add test case for grouping over multiple associations
Signed-off-by: Victor Chang <[email protected]>
* Adjust pulse time to catch the previous regression
Signed-off-by: Victor Chang <[email protected]>
---------
Signed-off-by: Victor Chang <[email protected]>
@@ -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