lrhkobe commented on code in PR #1037:
URL: 
https://github.com/apache/incubator-eventmesh/pull/1037#discussion_r930699445


##########
eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/tcp/client/session/send/UpStreamMsgContext.java:
##########
@@ -92,21 +92,26 @@ public void retry() {
             Command replyCmd = getReplyCmd(header.getCmd());
             long sendTime = System.currentTimeMillis();
 
-            EventMeshTcpSendResult sendStatus = session.upstreamMsg(header, 
event,
-                    createSendCallback(replyCmd, taskExecuteTime, event), 
startTime, taskExecuteTime);
+            retryTimes++;
 
-            if (StringUtils.equals(EventMeshTcpSendStatus.SUCCESS.name(), 
sendStatus.getSendStatus().name())) {
-                
logger.info("pkg|eventMesh2mq|cmd={}|event={}|user={}|wait={}ms|cost={}ms", 
header.getCmd(), event,
+            // check session availability
+            if (session.isAvailable(event.getSubject())) {

Review Comment:
   session.isAvailable() is not suitable for use here,this method was 
originally used to determine whether a message can be sent to a consumer 
session. The method contains logic as follows:
   ```
         if (!sessionContext.subscribeTopics.containsKey(topic)) {
             logger.warn("session is not available because session has not 
subscribe topic:{},client:{}", topic, client);
             return false;
         }
   ```



##########
eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/tcp/client/group/ClientSessionGroupMapping.java:
##########
@@ -133,11 +133,11 @@ public void operationComplete(ChannelFuture future) 
throws Exception {
             return;
         }
 
-        closeSession(session);
-
         //remove session from sessionTable
         sessionTable.remove(addr);
 
+        closeSession(session);
+

Review Comment:
   Can you describe the specific problem, I don't understand what the original 
way would cause.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to