Relax some timeouts that have been flaky for the automated CI testing. (#10858)

* Relax some timeouts that have been flaky for the automated CI testing.
This commit is contained in:
Larry Safran 2024-01-29 17:43:21 -08:00 committed by GitHub
parent ae5fdd5faa
commit ac428c14fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -220,7 +220,7 @@ public abstract class AbstractInteropTest {
* Constructor for tests.
*/
protected AbstractInteropTest() {
TestRule timeout = Timeout.seconds(60);
TestRule timeout = Timeout.seconds(90);
try {
timeout = new DisableOnDebug(timeout);
} catch (Throwable t) {
@ -2212,7 +2212,7 @@ public abstract class AbstractInteropTest {
}
protected int operationTimeoutMillis() {
return 5000;
return 7000;
}
/**

View File

@ -244,7 +244,7 @@ public class RetryTest {
private void assertRpcStatusRecorded(
Status.Code code, long roundtripLatencyMs, long outboundMessages) throws Exception {
MetricsRecord record = clientStatsRecorder.pollRecord(5, SECONDS);
MetricsRecord record = clientStatsRecorder.pollRecord(7, SECONDS);
TagValue statusTag = record.tags.get(RpcMeasureConstants.GRPC_CLIENT_STATUS);
assertThat(statusTag.asString()).isEqualTo(code.toString());
assertThat(record.getMetricAsLongOrFail(DeprecatedCensusConstants.RPC_CLIENT_FINISHED_COUNT))