From cd461e0e0e236747ef29a9fcac69f0b5f5093bde Mon Sep 17 00:00:00 2001 From: leizhiyuan Date: Fri, 10 May 2019 20:49:29 +0800 Subject: [PATCH 1/2] update version --- pom.xml | 2 +- sofa-boot-core/pom.xml | 6 +++--- sofa-boot-plugin/pom.xml | 6 +++--- sofa-boot-samples/pom.xml | 6 +++--- sofa-boot-starter/pom.xml | 6 +++--- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/pom.xml b/pom.xml index 455b167..1a76217 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.alipay.sofa sofa-rpc-boot-projects - 5.5.3-SNAPSHOT + 5.5.3 pom ${project.groupId}:${project.artifactId} diff --git a/sofa-boot-core/pom.xml b/sofa-boot-core/pom.xml index d905f3e..b687fbe 100644 --- a/sofa-boot-core/pom.xml +++ b/sofa-boot-core/pom.xml @@ -5,12 +5,12 @@ com.alipay.sofa sofaboot-dependencies - 2.6.3 + 2.6.4 4.0.0 rpc-sofa-boot-core - 5.5.3-SNAPSHOT + 5.5.3 https://github.com/alipay/sofa-rpc @@ -23,7 +23,7 @@ 2.4.10 3.0.14 false - 5.5.3-SNAPSHOT + 5.5.3 0.10 3.3 3.0.1 diff --git a/sofa-boot-plugin/pom.xml b/sofa-boot-plugin/pom.xml index 50b2b13..94b2093 100644 --- a/sofa-boot-plugin/pom.xml +++ b/sofa-boot-plugin/pom.xml @@ -5,16 +5,16 @@ com.alipay.sofa sofaboot-dependencies - 2.6.3 + 2.6.4 4.0.0 rpc-sofa-boot-plugin - 5.5.3-SNAPSHOT + 5.5.3 rpc-sofa-boot-plugin - 5.5.3-SNAPSHOT + 5.5.3 2.10.4 3.0.1 0.4 diff --git a/sofa-boot-samples/pom.xml b/sofa-boot-samples/pom.xml index fadbe2a..2150394 100644 --- a/sofa-boot-samples/pom.xml +++ b/sofa-boot-samples/pom.xml @@ -7,14 +7,14 @@ com.alipay.sofa sofa-rpc-boot-projects - 5.5.3-SNAPSHOT + 5.5.3 2.4.10 3.0.14 - 2.6.2 - 5.5.3-SNAPSHOT + 2.6.3 + 5.5.3 2.9.1 4.12 1.4.2.RELEASE diff --git a/sofa-boot-starter/pom.xml b/sofa-boot-starter/pom.xml index 7b0f6bd..a357634 100644 --- a/sofa-boot-starter/pom.xml +++ b/sofa-boot-starter/pom.xml @@ -5,12 +5,12 @@ com.alipay.sofa sofaboot-dependencies - 2.6.3 + 2.6.4 4.0.0 rpc-sofa-boot-starter - 5.5.3-SNAPSHOT + 5.5.3 https://github.com/alipay/sofa-rpc @@ -18,7 +18,7 @@ 1.6 UTF-8 false - 5.5.3-SNAPSHOT + 5.5.3 3.3 3.0.1 3.0 From 22778c8d4c00f2f2f0d78e11a62adaff57b79b81 Mon Sep 17 00:00:00 2001 From: leizhiyuan Date: Thu, 16 May 2019 20:56:22 +0800 Subject: [PATCH 2/2] fix test case --- .../com/alipay/sofa/rpc/test/registry/MultiRegistryTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sofa-boot-starter/src/test/java/com/alipay/sofa/rpc/test/registry/MultiRegistryTest.java b/sofa-boot-starter/src/test/java/com/alipay/sofa/rpc/test/registry/MultiRegistryTest.java index 862dac2..da450d7 100644 --- a/sofa-boot-starter/src/test/java/com/alipay/sofa/rpc/test/registry/MultiRegistryTest.java +++ b/sofa-boot-starter/src/test/java/com/alipay/sofa/rpc/test/registry/MultiRegistryTest.java @@ -17,6 +17,7 @@ package com.alipay.sofa.rpc.test.registry; import com.alipay.sofa.rpc.boot.registry.MultiRegistryService; +import com.alipay.sofa.rpc.core.exception.SofaRouteException; import com.alipay.sofa.rpc.core.exception.SofaRpcException; import com.alipay.sofa.rpc.test.base.ActivelyDestroyTest; import org.junit.Ignore; @@ -53,7 +54,7 @@ public void testInvokeWithMultiRegistry() throws InterruptedException { System.out.println("multi registry:" + result); } catch (Exception e) { e.printStackTrace(); - assertEquals(SofaRpcException.class, e.getClass()); + assertEquals(SofaRouteException.class, e.getClass()); } }