-
Notifications
You must be signed in to change notification settings - Fork 380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade 3.0.0-SNAPSHOT #92
Conversation
@@ -2,7 +2,7 @@ language: java | |||
sudo: false | |||
|
|||
jdk: | |||
- openjdk7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里 JDK7 和 JDK8 都保留吧,历史的组件还没有升级上来,所以两种测试场景都保留吧。
@@ -182,7 +182,7 @@ public void testDoServerReport() throws Exception { | |||
//ss TL | |||
this.remoteTracer.serverSend("0"); | |||
//异步汇报,所以 sleep 10s | |||
Thread.sleep(1000 * 10); | |||
Thread.sleep(1000); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
代码改掉,这个注释也改下吧
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
嗯,已改~
@@ -225,7 +225,7 @@ public void testDoReport() throws Exception { | |||
//ss TL | |||
this.remoteTracer.serverSend("0"); | |||
//异步汇报,所以 sleep 10s | |||
Thread.sleep(1000 * 10); | |||
Thread.sleep(1000); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
注释需要修改
String fromApp = "client"; | ||
String toApp = "server"; | ||
String fromApp = "server"; | ||
String toApp = "client"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里的修改 fromApp & toApp 的 位置是什么原因?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
对着之前的测试代码逻辑看下,改完之后是对的~
Upgrade 2.3.0-SNAPSHOT