diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-06-09 11:17:12 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-06-09 11:53:20 +0200 |
commit | 0de102e46f3e8c3d7389a67a6f375fed69db4617 (patch) | |
tree | 43602a4610d982fa0d73bd9412587e8e1fb6ac98 | |
parent | 996b9fe2ce545272bf84fd32665a4d0aba936de9 (diff) |
Add one missing output decode in rally.py
It partially cherry-picks "Conform with latest Neutron rally job" [1]
[1] https://gerrit.opnfv.org/gerrit/#/c/68021/
Change-Id: I4943f737be29bcadfead427a7852964e6438a018
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | functest/opnfv_tests/openstack/rally/rally.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/rally/rally.py b/functest/opnfv_tests/openstack/rally/rally.py index 61352c1ed..37b1488dd 100644 --- a/functest/opnfv_tests/openstack/rally/rally.py +++ b/functest/opnfv_tests/openstack/rally/rally.py @@ -431,7 +431,7 @@ class RallyBase(singlevm.VmReady2): LOGGER.debug('task_id : %s', task_id) if task_id is None: LOGGER.error("Failed to retrieve task_id") - LOGGER.error("Result:\n%s", output) + LOGGER.error("Result:\n%s", output.decode("utf-8")) raise Exception("Failed to retrieve task id") self._save_results(test_name, task_id) |