summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/client_utils/yaml_utils.py
diff options
context:
space:
mode:
authorDan Klein <danklei@cisco.com>2015-10-18 16:12:26 +0300
committerDan Klein <danklei@cisco.com>2015-10-18 16:12:40 +0300
commit80bd7895112cba0b3cbb6d56995def6ffbdccf33 (patch)
treefe212025be5db80477ccf0ea4c17f0de11989c16 /scripts/automation/trex_control_plane/client_utils/yaml_utils.py
parent4a8d34c7548e85e97426bc1d85c670003b1f5870 (diff)
Progress in trex_streams and in yaml_utils.
Next, start working on StreamList object
Diffstat (limited to 'scripts/automation/trex_control_plane/client_utils/yaml_utils.py')
-rwxr-xr-xscripts/automation/trex_control_plane/client_utils/yaml_utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/client_utils/yaml_utils.py b/scripts/automation/trex_control_plane/client_utils/yaml_utils.py
index 0d808880..024b73c2 100755
--- a/scripts/automation/trex_control_plane/client_utils/yaml_utils.py
+++ b/scripts/automation/trex_control_plane/client_utils/yaml_utils.py
@@ -77,7 +77,8 @@ class CTRexYAMLLoader(object):
if isinstance(evaluated_obj, dict) and evaluated_obj.keys() == [root_obj]:
evaluated_obj = evaluated_obj.get(root_obj)
if not self.ref_obj:
- self.ref_obj = load_yaml_to_obj(self.yaml_path) # load reference object to class attribute.
+ self.ref_obj = load_yaml_to_any_obj(self.yaml_path)
+ # self.load_reference()
ref_item = self.ref_obj.get(root_obj)
if ref_item is not None:
try: