finefuture commented on code in PR #13971: URL: https://github.com/apache/dubbo/pull/13971#discussion_r1554846944
########## dubbo-metadata/dubbo-metadata-api/src/main/java/org/apache/dubbo/metadata/report/support/AbstractMetadataReportFactory.java: ########## @@ -89,6 +91,12 @@ public MetadataReport getMetadataReport(URL url) { } protected String toMetadataReportKey(URL url) { + String namespace = url.getParameter(NAMESPACE_KEY); + if (!StringUtils.isEmpty(namespace)) { + return URL.valueOf(url.toServiceString()) + .addParameter(NAMESPACE_KEY, namespace) + .toString(); + } Review Comment: This change has already reverted. -- 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: notifications-unsubscr...@dubbo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For additional commands, e-mail: notifications-h...@dubbo.apache.org