This is an automated email from the ASF dual-hosted git repository.

jonyang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh.git


The following commit(s) were added to refs/heads/master by this push:
     new bf8f3e1cd [ISSUE #2986] Method concatenates the result of a toString() 
call[SendAsyncRemoteEventProcessor] (#2996)
bf8f3e1cd is described below

commit bf8f3e1cd3c78aa3ba1158e5873d4cba8d8437c0
Author: Dilraj vyas <[email protected]>
AuthorDate: Thu Feb 2 10:25:59 2023 +0530

    [ISSUE #2986] Method concatenates the result of a toString() 
call[SendAsyncRemoteEventProcessor] (#2996)
    
    * #2648
    
    * #2648
    
    * #2986
---
 .../core/protocol/http/processor/SendAsyncRemoteEventProcessor.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/http/processor/SendAsyncRemoteEventProcessor.java
 
b/eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/http/processor/SendAsyncRemoteEventProcessor.java
index 0e270f364..079c19985 100644
--- 
a/eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/http/processor/SendAsyncRemoteEventProcessor.java
+++ 
b/eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/http/processor/SendAsyncRemoteEventProcessor.java
@@ -290,7 +290,7 @@ public class SendAsyncRemoteEventProcessor implements 
AsyncHttpProcessor {
                 @Override
                 public void onSuccess(final SendResult sendResult) {
                     responseBodyMap.put(EventMeshConstants.RET_CODE, 
EventMeshRetCode.SUCCESS.getRetCode());
-                    responseBodyMap.put(EventMeshConstants.RET_MSG, 
EventMeshRetCode.SUCCESS.getErrMsg() + sendResult.toString());
+                    responseBodyMap.put(EventMeshConstants.RET_MSG, 
EventMeshRetCode.SUCCESS.getErrMsg() + sendResult);
 
                     if (log.isInfoEnabled()) {
                         
log.info("message|eventMesh2mq|REQ|ASYNC|send2MQCost={}ms|topic={}|bizSeqNo={}|uniqueId={}",


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to