chickenlj commented on code in PR #13017: URL: https://github.com/apache/dubbo/pull/13017#discussion_r1323830597
########## dubbo-common/src/main/java/org/apache/dubbo/common/config/ConfigurationUtils.java: ########## @@ -277,7 +277,7 @@ private static <V extends Object> Map<String, V> getSubProperties(Map<String, V> for (Map.Entry<String, V> entry : copy.entrySet()) { String key = entry.getKey(); V val = entry.getValue(); - if (StringUtils.startsWithIgnoreCase(key, prefix) + if ((StringUtils.startsWithIgnoreCase(key, prefix) || StringUtils.startsWithIgnoreCase(key, StringUtils.toOSStyleKey(prefix))) Review Comment: Yes, I think so. I will check this place later. -- 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