We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a96ceb commit f25219eCopy full SHA for f25219e
src/test/java/perf/SimpleSyncPerfTest.java
@@ -44,9 +44,9 @@ public class SimpleSyncPerfTest {
44
@Parameterized.Parameters
45
public static Collection<Protocol> protocols() {
46
return Arrays.asList(
47
+ Protocol.VST,
48
Protocol.HTTP_VPACK,
- Protocol.HTTP_JSON,
49
- Protocol.VST
+ Protocol.HTTP_JSON
50
);
51
}
52
@@ -68,10 +68,11 @@ private void doGetVersion() {
68
69
70
@Test
71
- public void getVersion() {
+ public void getVersion() throws InterruptedException {
72
long start = new Date().getTime();
73
doGetVersion();
74
long end = new Date().getTime();
75
System.out.println("elapsed ms: " + (end - start));
76
+ Thread.sleep(5000);
77
78
0 commit comments