[PSM Interop] Change the log message from Client pods to Client container (#34029)

<!--

If you know who should review your pull request, please assign it to
that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the
appropriate
lang label.

-->
pull/34038/head
Xuan Wang 2 years ago committed by GitHub
parent 5eb227936e
commit a329b5ef84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      tools/run_tests/xds_k8s_test_driver/framework/xds_k8s_testcase.py
  2. 2
      tools/run_tests/xds_k8s_test_driver/framework/xds_url_map_testcase.py

@ -670,7 +670,7 @@ class IsolatedXdsKubernetesTestCase(
client_restarts,
0,
msg=(
"Client pods unexpectedly restarted"
"Client container unexpectedly restarted"
f" {client_restarts} times during test. In most cases, this"
" is caused by the test client app crash."
),
@ -679,7 +679,7 @@ class IsolatedXdsKubernetesTestCase(
server_restarts,
0,
msg=(
"Server pods unexpectedly restarted"
"Server container unexpectedly restarted"
f" {server_restarts} times during test. In most cases, this"
" is caused by the test client app crash."
),

@ -436,7 +436,7 @@ class XdsUrlMapTestCase(absltest.TestCase, metaclass=_MetaXdsUrlMapTestCase):
# Fail if any of the pods restarted.
error_msg = (
"Client pods unexpectedly restarted"
"Client container unexpectedly restarted"
f" {client_restarts} times during test."
" In most cases, this is caused by the test client app crash."
)

Loading…
Cancel
Save