Ver código fonte

dispose resource when connection pool is full

undefined
Savorboard 7 anos atrás
pai
commit
25ff7a688e
1 arquivos alterados com 3 adições e 1 exclusões
  1. +3
    -1
      src/DotNetCore.CAP.RabbitMQ/PublishQueueExecutor.cs

+ 3
- 1
src/DotNetCore.CAP.RabbitMQ/PublishQueueExecutor.cs Ver arquivo

@@ -53,7 +53,9 @@ namespace DotNetCore.CAP.RabbitMQ
}
finally
{
_connectionChannelPool.Return(channel);
var returned = _connectionChannelPool.Return(channel);
if (!returned)
channel.Dispose();
}
}
}

Carregando…
Cancelar
Salvar