AlbumenJ commented on code in PR #11677:
URL: https://github.com/apache/dubbo/pull/11677#discussion_r1162340965
##########
dubbo-common/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java:
##########
@@ -396,7 +396,12 @@ private boolean verifyMethodConfig(MethodConfig
methodConfig, Class<?> interface
logger.warn(CONFIG_NO_METHOD_FOUND, "", "", msg);
return false;
} else {
- throw new IllegalStateException(msg);
+ if (!isNeedCheckMethod()) {
+ msg = String.format("%s generic call ",
isNeedCheckMethod() ) + msg;
+ logger.warn(CONFIG_NO_METHOD_FOUND, "", "", msg);
Review Comment:
```suggestion
logger.warn(CONFIG_NO_METHOD_FOUND, "", "", msg);
```
--
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]