refer: org.apache.dubbo.config.ServiceConfig#doExportUrlsFor1Protocol

```
    private void doExportUrlsFor1Protocol(ProtocolConfig protocolConfig, 
List<URL> registryURLs) {
        String name = protocolConfig.getName();
        if (name == null || name.length() == 0) {
            name = "dubbo";
        }

        Map<String, String> map = new HashMap<String, String>();
        map.put(Constants.SIDE_KEY, Constants.PROVIDER_SIDE);
        map.put(Constants.DUBBO_VERSION_KEY, Version.getProtocolVersion());
        ...
```

[ Full content available at: 
https://github.com/apache/incubator-dubbo/issues/2542 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to