Dubbo3 多注册中心的小 Bug

1. 配置

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
dubbo:
  application:
    parameters:
      registry-type: service
  registries:
    a:
      address: nacos://172.16.1.104:7848
      group: DUBBO_SERVICE_GROUP
      parameters:
        namespace: a
    b:
      address: nacos://172.16.1.104:7848
      group: DUBBO_SERVICE_GROUP
      parameters:
        namespace: b

2. 问题

只会注册到一个 namespace

3. github

dubbo issue

0%