xingcici commented on code in PR #14009:
URL: https://github.com/apache/dubbo/pull/14009#discussion_r1716577738
##########
dubbo-rpc/dubbo-rpc-triple/src/main/java/org/apache/dubbo/rpc/protocol/tri/call/AbstractServerCallListener.java:
##########
@@ -68,6 +68,10 @@ public void invoke() {
responseObserver.onError(t);
return;
}
+ if (r.hasException()) {
+ doOnResponseHasException(r.getException());
+ return;
+ }
Review Comment:
这个地方直接调用 response.hasException() 是不是会导致异步的效果失效呢
--
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]