[fix] 修正消息调度没有记录成功数的问题

This commit is contained in:
智能大石头 2025-05-29 18:53:21 +08:00
parent 23c7523078
commit fe52ae3d7e
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public abstract class MessageHandler : Handler
var span = DefaultSpan.Current;
if (span != null) span.Value = ctx.Total;
Execute(ctx);
ctx.Success = Execute(ctx);
}
/// <summary>根据解码后的消息执行任务</summary>