Merge branch '3.3.0-beta.3-release' into apache-3.3
This commit is contained in:
commit
1e8b699fb9
|
|
@ -184,7 +184,7 @@
|
|||
<spotless.action>check</spotless.action>
|
||||
<dubbo-shared-resources.version>1.0.0</dubbo-shared-resources.version>
|
||||
<palantirJavaFormat.version>2.38.0</palantirJavaFormat.version>
|
||||
<revision>3.3.0-beta.3-SNAPSHOT</revision>
|
||||
<revision>3.3.0-beta.3</revision>
|
||||
<open_feign_version>3.1.5</open_feign_version>
|
||||
<jakarta.xml.bind-api.version>4.0.1</jakarta.xml.bind-api.version>
|
||||
<jaxb-runtime.version>2.3.3-b02</jaxb-runtime.version>
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
<packaging>pom</packaging>
|
||||
|
||||
<properties>
|
||||
<revision>3.3.0-beta.3-SNAPSHOT</revision>
|
||||
<revision>3.3.0-beta.3</revision>
|
||||
<maven_flatten_version>1.6.0</maven_flatten_version>
|
||||
<slf4j_version>1.7.36</slf4j_version>
|
||||
<curator5_version>5.1.0</curator5_version>
|
||||
|
|
|
|||
|
|
@ -305,13 +305,6 @@
|
|||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.dubbo</groupId>
|
||||
<artifactId>dubbo-remoting-http</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.dubbo</groupId>
|
||||
<artifactId>dubbo-remoting-netty</artifactId>
|
||||
|
|
@ -485,7 +478,6 @@
|
|||
<include>org.apache.dubbo:dubbo-registry-nacos</include>
|
||||
<include>org.apache.dubbo:dubbo-registry-zookeeper</include>
|
||||
<include>org.apache.dubbo:dubbo-remoting-api</include>
|
||||
<include>org.apache.dubbo:dubbo-remoting-http</include>
|
||||
<include>org.apache.dubbo:dubbo-remoting-netty4</include>
|
||||
<include>org.apache.dubbo:dubbo-remoting-netty</include>
|
||||
<include>org.apache.dubbo:dubbo-remoting-zookeeper-curator5</include>
|
||||
|
|
|
|||
|
|
@ -390,11 +390,6 @@
|
|||
<artifactId>dubbo-remoting-api</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.dubbo</groupId>
|
||||
<artifactId>dubbo-remoting-http</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.dubbo</groupId>
|
||||
<artifactId>dubbo-remoting-http12</artifactId>
|
||||
|
|
@ -438,11 +433,6 @@
|
|||
<artifactId>dubbo-rpc-injvm</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.dubbo</groupId>
|
||||
<artifactId>dubbo-rpc-rest</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.dubbo</groupId>
|
||||
|
|
|
|||
|
|
@ -43,6 +43,8 @@ import org.junit.jupiter.api.Assertions;
|
|||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.TestInfo;
|
||||
import org.junit.jupiter.api.condition.DisabledOnOs;
|
||||
import org.junit.jupiter.api.condition.OS;
|
||||
import redis.clients.jedis.Jedis;
|
||||
import redis.clients.jedis.exceptions.JedisConnectionException;
|
||||
import redis.clients.jedis.exceptions.JedisDataException;
|
||||
|
|
@ -54,6 +56,7 @@ import static org.apache.dubbo.common.constants.CommonConstants.SYNC_REPORT_KEY;
|
|||
import static org.apache.dubbo.metadata.ServiceNameMapping.DEFAULT_MAPPING_GROUP;
|
||||
import static redis.embedded.RedisServer.newRedisServer;
|
||||
|
||||
@DisabledOnOs(OS.WINDOWS)
|
||||
class RedisMetadataReportTest {
|
||||
|
||||
private static final String REDIS_URL_TEMPLATE = "redis://%slocalhost:%d",
|
||||
|
|
|
|||
Loading…
Reference in New Issue