diff options
author | Martin Klozik <martinx.klozik@intel.com> | 2018-01-22 11:23:41 +0000 |
---|---|---|
committer | Martin Klozik <martinx.klozik@intel.com> | 2018-01-22 11:23:41 +0000 |
commit | 52c154c463705b51c54d639026093ecd80c9a6b4 (patch) | |
tree | cf6011b428bcd46f2528d4ede8f9ccaf436eb90f /tools | |
parent | c870b4c5e4360008e17dda745fc9ce11b212f702 (diff) |
bugfix: Define _EXECUTED_PIDS in config file
Add definition of internal _EXECUTED_PIDS list into generic
configuration file.
JIRA: VSPERF-556
Change-Id: I6c237cb563c0a37bf806561d1f841587796399b8
Signed-off-by: Martin Klozik <martinx.klozik@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tasks.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/tasks.py b/tools/tasks.py index 18f4d712..4e03f85e 100644 --- a/tools/tasks.py +++ b/tools/tasks.py @@ -117,11 +117,8 @@ def run_task(cmd, logger, msg=None, check_error=False): def update_pids(pid): """update list of running pids, so they can be terminated at the end """ - try: - pids = settings.getValue('_EXECUTED_PIDS') - pids.append(pid) - except AttributeError: - pids = [pid] + pids = settings.getValue('_EXECUTED_PIDS') + pids.append(pid) settings.setValue('_EXECUTED_PIDS', pids) def run_background_task(cmd, logger, msg): |