remove unused param

pull/22193/head
Eric Gribkoff 5 years ago
parent 8562a13fab
commit 1816401abf
  1. 4
      tools/run_tests/run_xds_tests.py

@ -790,7 +790,7 @@ def get_instance_names(gcp, instance_group):
return instance_names
def start_xds_client(cmd, service_port):
def start_xds_client(cmd):
bootstrap_path = None
with tempfile.NamedTemporaryFile(delete=False) as bootstrap_file:
bootstrap_file.write(
@ -979,7 +979,7 @@ try:
service_port=gcp.service_port,
stats_port=args.stats_port,
qps=args.qps)
client_process = start_xds_client(cmd, gcp.service_port)
client_process = start_xds_client(cmd)
if args.test_case == 'all':
test_backends_restart(gcp, backend_service, instance_group)

Loading…
Cancel
Save