From 1cec654ac1abdf25b790a0bd44b5aa6c9259fd07 Mon Sep 17 00:00:00 2001 From: Eric Gribkoff Date: Mon, 2 Mar 2020 15:47:56 -0800 Subject: [PATCH] wait longer for deletion --- tools/run_tests/run_xds_tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/run_tests/run_xds_tests.py b/tools/run_tests/run_xds_tests.py index 1a407ea11f5..044428add2a 100755 --- a/tools/run_tests/run_xds_tests.py +++ b/tools/run_tests/run_xds_tests.py @@ -637,11 +637,10 @@ def delete_instance_groups(gcp): project=gcp.project, zone=instance_group.zone, instanceGroupManager=instance_group.name).execute() - timeout_sec = 180 # Deleting an instance group can be slow wait_for_zone_operation(gcp, instance_group.zone, result['name'], - timeout_sec=timeout_sec) + timeout_sec=_WAIT_FOR_BACKEND_SEC) except googleapiclient.errors.HttpError as http_error: logger.info('Delete failed: %s', http_error)