mirror of https://github.com/grpc/grpc-java.git
interop-testing: bump client op timeout from 5 to 15 seconds (#9211)
JVM startup costs that happen when dependencies are loaded for the first time can consume a lot of time (we've occasionally observed around ~5 seconds of CPU time); this causes frequent test flakes with xds (google-c2p) when using the current 5 second deadline. Increasing to 15 seconds should give enough time.
This commit is contained in:
parent
69d4e71309
commit
6dbd1d8f58
|
|
@ -619,6 +619,11 @@ public class TestServiceClient {
|
|||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int operationTimeoutMillis() {
|
||||
return 15000;
|
||||
}
|
||||
}
|
||||
|
||||
private static String validTestCasesHelpText() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue