浏览代码

调整

master
杨雷 5 个月前
父节点
当前提交
eaf86c0c20
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. +10
    -0
      TelpoPush.Position.Worker/Service/Mq/KafkaService.cs

+ 10
- 0
TelpoPush.Position.Worker/Service/Mq/KafkaService.cs 查看文件

@@ -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;


正在加载...
取消
保存