Skip to content

Commit beb0ca3

Browse files
authored
Prepare to release v5.3.0. (#9)
1 parent 7c3dafa commit beb0ca3

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

core/api/src/main/java/com/alipay/sofa/rpc/common/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ public final class Version {
3737
/**
3838
* 当前Build版本,每次发布修改
3939
*/
40-
public static final String BUILD_VERSION = "5.3.0_20180112151111";
40+
public static final String BUILD_VERSION = "5.3.0_20180413110000";
4141
}

extension-impl/bootstrap-dubbo/src/main/resources/META-INF/services/com.alibaba.dubbo.remoting.Codec

Lines changed: 0 additions & 2 deletions
This file was deleted.

test/test-integration/src/test/java/com/alipay/sofa/rpc/test/bootstrap/bolt/BoltConsumerBootstrapTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public void testSubscribe() throws Exception {
104104
consumerConfig3.refer();
105105
long end = System.currentTimeMillis();
106106
System.out.println("elapsed time " + (end - start) + "ms");
107-
Assert.assertTrue((end - start) > 2000 && (end - start) < 3000);
107+
Assert.assertTrue((end - start) > 2000 && (end - start) < 4000);
108108
Assert.assertTrue(consumerConfig3.getConsumerBootstrap().isSubscribed());
109109
Assert.assertTrue(consumerConfig3.getConsumerBootstrap().getCluster()
110110
.getAddressHolder().getAllProviderSize() == 0);
@@ -162,7 +162,7 @@ public void testSubscribe() throws Exception {
162162
consumerConfig1.refer();
163163
end = System.currentTimeMillis();
164164
System.out.println("elapsed time " + (end - start) + "ms");
165-
Assert.assertTrue((end - start) > 2000 && (end - start) < 3000);
165+
Assert.assertTrue((end - start) > 2000 && (end - start) < 4000);
166166
Assert.assertTrue(consumerConfig1.getConsumerBootstrap().isSubscribed());
167167
Assert.assertTrue(consumerConfig1.getConsumerBootstrap().getCluster()
168168
.getAddressHolder().getAllProviderSize() > 0);
@@ -179,7 +179,7 @@ public void testSubscribe() throws Exception {
179179
consumerConfig2.refer();
180180
end = System.currentTimeMillis();
181181
System.out.println("elapsed time " + (end - start) + "ms");
182-
Assert.assertTrue((end - start) > 1000 && (end - start) < 2000);
182+
Assert.assertTrue((end - start) > 1000 && (end - start) < 3000);
183183
Assert.assertFalse(consumerConfig2.getConsumerBootstrap().isSubscribed());
184184

185185
try {

0 commit comments

Comments
 (0)