You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by GitBox <gi...@apache.org> on 2021/07/12 08:25:00 UTC

[GitHub] [dubbo] changwei0708 opened a new issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

changwei0708 opened a new issue #8273:
URL: https://github.com/apache/dubbo/issues/8273


   - [x] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate.
   - [x] I have checked the [FAQ](https://github.com/apache/dubbo/blob/master/FAQ.md) of this repository and believe that this is not a duplicate.
   
   ### Environment
   
   * Dubbo version: 3.0.1
   * Operating System version: Linux or Win
   * Java version: 1.8.201
   
   ### Steps to reproduce this issue
   
   Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException just like 
   ```
   [ERROR] -  [DUBBO] [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService, dubbo version: 3.0.1, current host: 169.254.166.203
   java.lang.RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService
   ```
   
   
   and I check another different between 2.7.x and 3.0.x  , it is the  class DubboBootstrap  of 3.0.x  init InMemoryWritableMetadataService  when start , just like this :
   
   ```
   executorRepository.nextScheduledExecutor().scheduleAtFixedRate(() -> {
               InMemoryWritableMetadataService localMetadataService = (InMemoryWritableMetadataService) WritableMetadataService.getDefaultExtension();
               localMetadataService.blockUntilUpdated();
               try {
                   ServiceInstanceMetadataUtils.refreshMetadataAndInstance(serviceInstance);
               } catch (Exception e) {
                   logger.error("Refresh instance and metadata error", e);
               }
           }, 0, ConfigurationUtils.get(METADATA_PUBLISH_DELAY_KEY, DEFAULT_METADATA_PUBLISH_DELAY), TimeUnit.MILLISECONDS);
   ```
   
   in other word InMemoryWritableMetadataService  Is automatically initialized, Is it related to this place?
   
   


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] CrazyHZM closed issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

Posted by GitBox <gi...@apache.org>.
CrazyHZM closed issue #8273:
URL: https://github.com/apache/dubbo/issues/8273


   


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] CrazyHZM commented on issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

Posted by GitBox <gi...@apache.org>.
CrazyHZM commented on issue #8273:
URL: https://github.com/apache/dubbo/issues/8273#issuecomment-986160339


   @changwei0708 
   The javassist version has been upgraded, try it with version 3.0.4.


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] AlbumenJ commented on issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

Posted by GitBox <gi...@apache.org>.
AlbumenJ commented on issue #8273:
URL: https://github.com/apache/dubbo/issues/8273#issuecomment-879004958


   could you please create a git repo to save this demo?


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] changwei0708 commented on issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

Posted by GitBox <gi...@apache.org>.
changwei0708 commented on issue #8273:
URL: https://github.com/apache/dubbo/issues/8273#issuecomment-878084290


   and all about the pom of dubbo dependencies , and I'll confirm it carefully again not depend on both dubbo 2.7 and 3.0.
   
   ```
   ...
   
   <properties>
           <dubbo.version>3.0.1</dubbo.version>
           <nacos-client.version>2.0.1</nacos-client.version>
       </properties>
   ...
   
   
   <dependencies>
   
   ...
   
   <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo</artifactId>
               <version>${dubbo.version}</version>
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
   
   <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-registry-multicast</artifactId>
                   <version>${dubbo.version}</version>
               <!--<type>pom</type>-->
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-registry-zookeeper</artifactId>
               <version>${dubbo.version}</version>
               <!--<type>pom</type>-->
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <!-- Dubbo Registry Nacos -->
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-registry-nacos</artifactId>
               <version>${dubbo.version}</version>
               <scope>compile</scope>
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>com.alibaba.nacos</groupId>
               <artifactId>nacos-client</artifactId>
               <version>${nacos-client.version}</version>
               <scope>compile</scope>
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
   
   <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-configcenter-zookeeper</artifactId>
               <version>${dubbo.version}</version>
               <!--<type>pom</type>-->
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-dependencies-zookeeper</artifactId>
               <version>${dubbo.version}</version>
               <!--<type>pom</type>-->
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
   
   <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-metadata-api</artifactId>
               <version>${dubbo.version}</version>
               <!--<type>pom</type>-->
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-metadata-report-zookeeper</artifactId>
               <version>${dubbo.version}</version>
               <!--<type>pom</type>-->
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-metadata-report-nacos</artifactId>
               <version>${dubbo.version}</version>
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-rpc-dubbo</artifactId>
               <version>${dubbo.version}</version>
               <!--<type>pom</type>-->
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-config-spring</artifactId>
               <version>${dubbo.version}</version>
               <type>pom</type>
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-remoting-netty4</artifactId>
               <version>${dubbo.version}</version>
               <type>pom</type>
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-serialization-hessian2</artifactId>
               <version>${dubbo.version}</version>
               <type>pom</type>
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-qos</artifactId>
               <version>${dubbo.version}</version>
               <type>pom</type>
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
   
   <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-serialization-kryo</artifactId>
               <version>2.7.12</version>
               <exclusions>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-remoting-api</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-common</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.dubbo</groupId>
                       <artifactId>dubbo-config-spring</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
   ...
   
   </dependencies>
   
   ```


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] CrazyHZM commented on issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

Posted by GitBox <gi...@apache.org>.
CrazyHZM commented on issue #8273:
URL: https://github.com/apache/dubbo/issues/8273#issuecomment-1006550129


   No feedback for a long time, please close the issue temporarily. If there is still a problem, you can reopen it.


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] changwei0708 commented on issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

Posted by GitBox <gi...@apache.org>.
changwei0708 commented on issue #8273:
URL: https://github.com/apache/dubbo/issues/8273#issuecomment-878081581


   and the dubbo service provider config xml is 
   
   ```
   <?xml version="1.0" encoding="UTF-8"?>
   <!-- - Copyright 1999-2011 Alibaba Group. - - Licensed under the Apache License, 
   	Version 2.0 (the "License"); - you may not use this file except in compliance 
   	with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 
   	- - Unless required by applicable law or agreed to in writing, software - 
   	distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT 
   	WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the 
   	License for the specific language governing permissions and - limitations 
   	under the License. -->
   <beans xmlns="http://www.springframework.org/schema/beans"
   	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
   	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
   	http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
   	
   	<dubbo:application name="platform-service" owner="${dubbo.owner}" organization="${dubbo.organization}"/>
   	
   	<dubbo:registry id="registry1" address="zookeeper://192.168.1.11:2181?registry-type=service" check="false"/>
   	<dubbo:config-center address="zookeeper://192.168.1.11:2181"/>
   	<dubbo:metadata-report address="zookeeper://192.168.1.11:2181"/>
   	
   	<dubbo:provider timeout="${dubbo.service.timeout}" version="${dubbo.service.version}" registry="registry1" protocol="dubbo" export="true" />
   	<dubbo:consumer timeout="${dubbo.service.timeout}" version="${dubbo.service.version}" registry="registry1" retries="0" check="false"/>
   
   	<dubbo:monitor protocol="${platform.dubbo.monitor}"/>
   	
    	<dubbo:protocol name="dubbo" serialization="kryo" host="${dubbo.host}" port="${dubbo.port}" payload="104857600" />
   
   	<dubbo:service protocol="dubbo" export="true" delay="5000" registry="registry1" interface="com.platform.workbench.spi.IWorkbenchService" ref="workbenchServiceImpl" />
   	<dubbo:service protocol="dubbo" export="true" delay="5000" registry="registry1" interface="com.platform.workbench.spi.IWorkbenchAdminService" ref="workbenchServiceAdminImpl" />
   	
   </beans>
   
   ```


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] CuttingWaveKnife commented on issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

Posted by GitBox <gi...@apache.org>.
CuttingWaveKnife commented on issue #8273:
URL: https://github.com/apache/dubbo/issues/8273#issuecomment-900102207


   今天也碰到这个问题,最终是将
   <dependency>
       <groupId>org.javassist</groupId>
       <artifactId>javassist</artifactId>
   </dependency>
   从3.18.1-GA升级到3.21.0-GA解决,猜测是动态编译时,加载不了interface中的default方法


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] AlbumenJ commented on issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

Posted by GitBox <gi...@apache.org>.
AlbumenJ commented on issue #8273:
URL: https://github.com/apache/dubbo/issues/8273#issuecomment-903449386


   I will fix it in #8273.


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] changwei0708 commented on issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

Posted by GitBox <gi...@apache.org>.
changwei0708 commented on issue #8273:
URL: https://github.com/apache/dubbo/issues/8273#issuecomment-879508255


   > could you please create a git repo to save this demo?
   
   Please wait for me to sort it out


-- 
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-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org