Merge pull request #25197 from menghanl/header_matching_timeout

xds testing: increase path and header matching timeout
pull/25227/head
Menghan Li 4 years ago committed by GitHub
commit 78696bda3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      tools/run_tests/run_xds_tests.py

@ -1064,8 +1064,8 @@ def test_path_matching(gcp, original_backend_service, instance_group,
original_backend_instances + alternate_backend_instances,
_WAIT_FOR_STATS_SEC)
retry_count = 40
# Each attempt takes about 10 seconds, 40 retries is equivalent to 400
retry_count = 80
# Each attempt takes about 5 seconds, 80 retries is equivalent to 400
# seconds timeout.
for i in range(retry_count):
stats = get_client_stats(_NUM_TEST_RPCS, _WAIT_FOR_STATS_SEC)
@ -1262,8 +1262,8 @@ def test_header_matching(gcp, original_backend_service, instance_group,
original_backend_instances + alternate_backend_instances,
_WAIT_FOR_STATS_SEC)
retry_count = 40
# Each attempt takes about 10 seconds, 40 retries is equivalent to 400
retry_count = 80
# Each attempt takes about 5 seconds, 80 retries is equivalent to 400
# seconds timeout.
for i in range(retry_count):
stats = get_client_stats(_NUM_TEST_RPCS, _WAIT_FOR_STATS_SEC)

Loading…
Cancel
Save