xds-k8s: Add whitespace after Logs Explorer link (#29863)

To fix link parsers not recognizing the termination of the url, and including the next line.
pull/29744/head^2
Sergii Tkachenko 3 years ago committed by GitHub
parent fefeb5fe04
commit 8af28b83db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      tools/run_tests/xds_k8s_test_driver/framework/test_app/base_runner.py

@ -336,7 +336,8 @@ class KubernetesBaseRunner:
})
link = f'https://{gcp_ui_url}/logs/query;{req}?project={gcp_project}'
logger.info("GCP Logs Explorer link to %s:\n%s", deployment_name, link)
# A whitespace at the end to indicate the end of the url.
logger.info("GCP Logs Explorer link to %s:\n%s ", deployment_name, link)
@staticmethod
def _make_namespace_name(resource_prefix: str, resource_suffix: str,

Loading…
Cancel
Save