use category in url in org.apache.dubbo.registry.nacos.NacosRegistry#getCategories (#4204)

fixes #4201
This commit is contained in:
uglycow 2019-05-30 14:07:05 +08:00 committed by ken.lj
parent d2ba946160
commit 25102686bc
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ public class NacosRegistry extends FailbackRegistry {
*/
private String[] getCategories(URL url) {
return ANY_VALUE.equals(url.getServiceInterface()) ?
ALL_SUPPORTED_CATEGORIES : of(DEFAULT_CATEGORY);
ALL_SUPPORTED_CATEGORIES : url.getParameter(CATEGORY_KEY,new String[]{DEFAULT_CATEGORY});
}
private URL buildURL(Instance instance) {