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:
apolcyn 2022-05-27 14:36:54 -07:00 committed by GitHub
parent 69d4e71309
commit 6dbd1d8f58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -619,6 +619,11 @@ public class TestServiceClient {
return null;
}
}
@Override
protected int operationTimeoutMillis() {
return 15000;
}
}
private static String validTestCasesHelpText() {