From 6c0784ac9b17454b0a52e6a5a370cac83f1e2598 Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Mon, 20 Mar 2017 10:31:40 +0000 Subject: Bugfix: netperf_bottleneck execute failed because is_same_heat_context return True JIRA: YARDSTICK-600 Bugfix: netperf_bottleneck execute failed because is_same_heat_context return True So it exit without warning. I will remove the 'return True' from it. Change-Id: I48d62bd15ec359e2121f236c48d9d349174f2c10 Signed-off-by: chenjiankun --- yardstick/benchmark/core/task.py | 1 - 1 file changed, 1 deletion(-) diff --git a/yardstick/benchmark/core/task.py b/yardstick/benchmark/core/task.py index 2794d84f4..47315b587 100644 --- a/yardstick/benchmark/core/task.py +++ b/yardstick/benchmark/core/task.py @@ -220,7 +220,6 @@ class Task(object): # pragma: no cover target_attr: either a name for a server created by yardstick or a dict with attribute name mapping when using external heat templates """ - return True host = None target = None for context in self.contexts: -- cgit 1.2.3-korg