Explorar el Código

Add empty detection

master
Savorboard hace 4 años
padre
commit
ce07c555b2
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      src/DotNetCore.CAP/Internal/IConsumerServiceSelector.Default.cs

+ 5
- 0
src/DotNetCore.CAP/Internal/IConsumerServiceSelector.Default.cs Ver fichero

@@ -52,6 +52,11 @@ namespace DotNetCore.CAP.Internal

public ConsumerExecutorDescriptor SelectBestCandidate(string key, IReadOnlyList<ConsumerExecutorDescriptor> executeDescriptor)
{
if (executeDescriptor.Count == 0)
{
return null;
}

var result = MatchUsingName(key, executeDescriptor);
if (result != null)
{


Cargando…
Cancelar
Guardar