Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tools/run_tests/run_xds_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -3560,7 +3560,10 @@ def delete_instance_groups(gcp):
timeout_sec=_WAIT_FOR_BACKEND_SEC,
)
except KeyError as key_error:
logger.info("Caught KeyError while deleting instance group: %s", key_error)
logger.info(
"Caught KeyError while deleting instance group: %s",
key_error,
)
except googleapiclient.errors.HttpError as http_error:
logger.info("Delete failed: %s", http_error)

Expand Down