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:
Eric Anderson 2022-05-16 11:09:41 -07:00
parent b5e78d548d
commit c61b4af33d
1 changed files with 1 additions and 1 deletions

View File

@ -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();