-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Describe the bug
The consumer logs:
rabbitmq-amqp-dotnet-client/RabbitMQ.AMQP.Client/Impl/AmqpConsumer.cs
Lines 135 to 146 in 6656e10
| Message? nativeMessage = await _receiverLink.ReceiveAsync(timeout).ConfigureAwait(false); | |
| if (nativeMessage is null) | |
| { | |
| // this is not a problem, it is just a timeout. | |
| // the timeout is set to 60 seconds. | |
| // For the moment I'd trace it at some point we can remove it | |
| Trace.WriteLine(TraceLevel.Verbose, | |
| $"{ToString()}: Timeout {timeout.Seconds} s.. waiting for message."); | |
| continue; | |
| } | |
| _unsettledMessageCounter.Increment(); |
even it is still consuming messages
Reproduction steps
Execute some long running consuming
Expected behavior
It should not go in timeout
Additional context
There aren't side effects btw. All the messages are consumed correctly without problems
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request