Skip to content

Commit

Permalink
benchmarks: Raise timeout for aarch64
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ejona86 committed May 16, 2022
1 parent b5e78d5 commit c61b4af
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -42,7 +42,7 @@
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();
Expand Down

0 comments on commit c61b4af

Please sign in to comment.