REQ-2481: 记录发送执行id

This commit is contained in:
yanglin 2024-06-04 10:23:03 +08:00
parent db2da485bb
commit 673d62f455

View File

@ -26,8 +26,9 @@ public class CommonSendOneHandler extends SendOneHandler {
@Override
public void sendAndSubmitUpdate(SendExecutor<MessageHistory> executor, MessageHistory history) {
executor.log("sendMessage - historyId={}, taskId={}, batchNo={}",
history.getId(), history.getImMessageTaskId(), history.determineBatchNo().orElse(null));
executor.log("sendMessage - historyId={}, taskId={}, bizId={}, batchNo={}",
history.getId(), history.getImMessageTaskId(),
history.getBizId(), history.determineBatchNo().orElse(null));
MessageDispatchRequest sendRequest = new MessageDispatchRequest();
sendRequest.setFrom(history.getFromAccount());
sendRequest.setOpe(0);