use category in url in org.apache.dubbo.registry.nacos.NacosRegistry#getCategories (#4204)
fixes #4201
This commit is contained in:
parent
d2ba946160
commit
25102686bc
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue