mirror of https://github.com/grpc/grpc-java.git
benchmarks: Raise timeout for aarch64
runUnaryBlockingClosedLoop is failing after 10.3s, which means 5.3s was probably spent loading the LoadWorker. That means things are likely indeed slow enough that 5s isn't enough time to wait for the server to start. A successful execution of runUnaryBlockingClosedLoop takes 12.1 seconds, which again points to general slow execution.
This commit is contained in:
parent
b5e78d548d
commit
c61b4af33d
|
|
@ -42,7 +42,7 @@ import org.junit.runners.JUnit4;
|
|||
public class LoadWorkerTest {
|
||||
|
||||
|
||||
private static final int TIMEOUT = 5;
|
||||
private static final int TIMEOUT = 10;
|
||||
private static final Control.ClientArgs MARK = Control.ClientArgs.newBuilder()
|
||||
.setMark(Control.Mark.newBuilder().setReset(true).build())
|
||||
.build();
|
||||
|
|
|
|||
Loading…
Reference in New Issue