Configure client to send both unary and empty calls.

pull/24704/head
Chengyuan Zhang 4 years ago
parent 8c24041c37
commit df64f452de
  1. 5
      tools/run_tests/run_xds_tests.py

@ -1161,6 +1161,11 @@ def test_circuit_breaking_advanced(gcp,
}, },
] ]
try: try:
# Make client send UNARY_CALL and EMPTY_CALL.
configure_client(
[messages_pb2.ClientConfigureRequest.RpcType.UNARY_CALL,
messages_pb2.ClientConfigureRequest.RpcType.EMPTY_CALL],
[])
logger.info('Patching url map with %s', route_rules) logger.info('Patching url map with %s', route_rules)
patch_url_map_backend_service(gcp, patch_url_map_backend_service(gcp,
original_backend_service, original_backend_service,

Loading…
Cancel
Save