diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2018-03-29 22:52:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-29 22:52:54 +0000 |
commit | f19016b39b828f648a66adc305cce17f5146e922 (patch) | |
tree | 33f22e06759a8d748078e75c90ffe27003ae137c | |
parent | 0cfb413451484e311ad5d3e956f3bb9c52f6978e (diff) | |
parent | 0a7f7b98a6a93a02d4949974d01610081720cc87 (diff) |
Merge "don't print exceptions in atexit handler"
-rwxr-xr-x | yardstick/benchmark/runners/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/runners/base.py b/yardstick/benchmark/runners/base.py index 99386a440..fbdf6c281 100755 --- a/yardstick/benchmark/runners/base.py +++ b/yardstick/benchmark/runners/base.py @@ -121,7 +121,7 @@ class Runner(object): @staticmethod def terminate_all(): """Terminate all runners (subprocesses)""" - log.debug("Terminating all runners", exc_info=True) + log.debug("Terminating all runners") # release dumper process as some errors before any runner is created if not Runner.runners: |