Explorar el Código

调整

master
杨雷 hace 5 meses
padre
commit
eaf86c0c20
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. +10
    -0
      TelpoPush.Position.Worker/Service/Mq/KafkaService.cs

+ 10
- 0
TelpoPush.Position.Worker/Service/Mq/KafkaService.cs Ver fichero

@@ -97,7 +97,17 @@ namespace TelpoPush.Position.Worker.Service.Mq
continue;
}
if (!string.IsNullOrEmpty(messageResult))
{
messageFunc(topic, messageResult, headers);
try
{
consumer.Commit(consumeResult);
}
catch (KafkaException e)
{
logger.LogError($" - {e.Message}.");
}
}
#region 注释
//string messageResult = null;
//Headers headers = null;


Cargando…
Cancelar
Guardar