Skip to content

Commit 2868c69

Browse files
authored
Update SendAsyncMessageProcessor.java
[Fixes #2985]
1 parent fb144bb commit 2868c69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/http/processor/SendAsyncMessageProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public void onSuccess(SendResult sendResult) {
261261
HttpCommand succ = request.createHttpCommandResponse(
262262
sendMessageResponseHeader,
263263
SendMessageResponseBody.buildBody(EventMeshRetCode.SUCCESS.getRetCode(),
264-
EventMeshRetCode.SUCCESS.getErrMsg() + sendResult.toString()));
264+
EventMeshRetCode.SUCCESS.getErrMsg() + sendResult));
265265
asyncContext.onComplete(succ, handler);
266266
long endTime = System.currentTimeMillis();
267267
summaryMetrics.recordSendMsgCost(endTime - startTime);

0 commit comments

Comments
 (0)