xds: increase the RPC timeout to 1-sec to avoid deadline exceeding locally at the client and request never reaching server (#7316)

This commit is contained in:
sanjaypujare 2020-08-11 16:51:38 -07:00 committed by GitHub
parent 676e5d2509
commit 40b331e886
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class MeshCaCertificateProviderTest {
private static final String ZONE = "us-west2-a";
private static final long START_DELAY = 200_000_000L; // 0.2 seconds
private static final long[] DELAY_VALUES = {START_DELAY, START_DELAY * 2, START_DELAY * 4};
private static final long RPC_TIMEOUT_MILLIS = 100L;
private static final long RPC_TIMEOUT_MILLIS = 1000L;
/**
* Expire time of cert SERVER_0_PEM_FILE.
*/