Closed Displace99 closed 4 years ago
In ModelBase.cs
public void ModelSend(MethodBase method, ContentHeaderBase header, ReadOnlyMemory<byte> body)
{
if (method.HasContent)
{
_flowControlBlock.Wait();
Its calling .Wait()
on a ManualResetEventSlim
and its on a ThreadPool thread and the .Wait()
is blocking so the report is correct
Thank you very much.
I just downloaded this tool the other day and received the following warning when trying to publish to RabbitMQ.
This is a very basic RabbitMQ implementation, and I thought this was an issue with RabbitMQ, but they state that their publishing is entirely asynchronous in all messaging protocols. So I'm not sure if this is a false positive, or if I'm missing something. Any help would be appreciated.