aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_performance_tests.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-10-17 12:04:56 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-10-22 10:50:53 +0200
commit447548b9f2b3ad37a7593c937c0c09a4aef05ee1 (patch)
tree699072d904bac3e3c96a3425655f61a0943f1af8 /tools/run_tests/run_performance_tests.py
parent8834095e7642310cc09c43ccf5ec0184bd48a5cd (diff)
show logs from qps workers
Diffstat (limited to 'tools/run_tests/run_performance_tests.py')
-rwxr-xr-xtools/run_tests/run_performance_tests.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/run_tests/run_performance_tests.py b/tools/run_tests/run_performance_tests.py
index 92149115fe..f7646c9188 100755
--- a/tools/run_tests/run_performance_tests.py
+++ b/tools/run_tests/run_performance_tests.py
@@ -91,12 +91,11 @@ def create_qpsworker_job(language, shortname=None,
else:
host_and_port='localhost:%s' % port
- # TODO(jtattermusch): with some care, we can calculate the right timeout
- # of a worker from the sum of warmup + benchmark times for all the scenarios
jobspec = jobset.JobSpec(
cmdline=cmdline,
shortname=shortname,
- timeout_seconds=2*60*60)
+ timeout_seconds=5*60, # workers get restarted after each scenario
+ verbose_success=True)
return QpsWorkerJob(jobspec, language, host_and_port)