rabbitmq-dotnet-client icon indicating copy to clipboard operation
rabbitmq-dotnet-client copied to clipboard

RabbitMQ .NET client for .NET Standard 2.0+ and .NET 4.6.2+

Results 87 rabbitmq-dotnet-client issues
Sort by recently updated
recently updated
newest added

I noticed a memory leak on production (application in the docker container) when I was publishing a large number of messages at one time (500 k). Then I reproduced this...

User @domicioam noticed the following incorrect comments in #1105: ![141652977-26c68741-38e0-4c48-b5fb-32cf4ab3bdb4](https://user-images.githubusercontent.com/514926/141805910-7a4082c0-d3bb-4fc3-8b0d-19d3cc36f554.jpg)

After reading through a few issues (#876, #874) and doing some profiling I think I've found what the underlying issue is. Would love to get input from @danielmarbach, @bollhals and...

I have a reproduced state in our application, where the connection recovery leads to an unrecoverable error. Situation: - 1 AutorecoverConnection + Channel - The connection dropped (plugged out the...

Hello there I think I found a bug in the `rabbitmq-dotnet-client` with the topology-auto-recovery functionality. **How it can be reproduced:** - create a connection with topology-auto-recovery enabled - open a...

### Problem Creating a new channel in an asynchronous consumer creates new channel on server, but throws timeout exception on client ### Details I tried to make a pipeline from...

bug
help wanted

[RabbitMq_CallbackExceptionBug.zip](https://github.com/rabbitmq/rabbitmq-dotnet-client/files/6348023/RabbitMq_CallbackExceptionBug.zip) PFA the sample. When using AsyncEventingBasicConsumer, CallbackException event never fires. But when using EventingBasicConsumer (plz uncomment the code at the bottom of the Program.cs), it does. I think the...

sometimes our network is unstable and our services just stoppes listening on messages. Its seems like the client gets an initial connection but very quickly losening it again. It's seems...

We have a situation in which the IModel is no longer usable for publishing and waiting for publish confirms with WaitForConfirmsOrDie() method. We have injected CorrelationId to the IBasicProperties object...

I think I found one missing `IRecoverable` interface implementation. ### Problem As code snippet from master branch says in the comment it should be implemented for channels and connections, whereas...