diff options
author | 2015-12-06 17:13:30 +0200 | |
---|---|---|
committer | 2015-12-06 17:13:30 +0200 | |
commit | 5cce0ba15e3be9246b2186b701a60c35df59d2d1 (patch) | |
tree | ebeaaacad5153c9b1f312498d8cba9a20aaad297 /scripts/automation/trex_control_plane/common | |
parent | 97cd0c4748938c783fc07ee2eb3450a851d3d93e (diff) | |
parent | 026f949fbafbb00fd7a21f3d84a632f5745003ea (diff) |
Merge from master
Diffstat (limited to 'scripts/automation/trex_control_plane/common')
-rwxr-xr-x | scripts/automation/trex_control_plane/common/trex_streams.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/common/trex_streams.py b/scripts/automation/trex_control_plane/common/trex_streams.py index c2823445..89de7286 100755 --- a/scripts/automation/trex_control_plane/common/trex_streams.py +++ b/scripts/automation/trex_control_plane/common/trex_streams.py @@ -14,7 +14,7 @@ StreamPack = namedtuple('StreamPack', ['stream_id', 'stream']) class CStreamList(object): def __init__(self): - self.streams_list = {} + self.streams_list = OrderedDict() self.yaml_loader = CTRexYAMLLoader(os.path.join(os.path.dirname(os.path.realpath(__file__)), "rpc_defaults.yaml")) @@ -82,6 +82,7 @@ class CStreamList(object): stream_ids = {} for idx, stream_name in enumerate(self.streams_list): stream_ids[stream_name] = idx + # next, iterate over the streams and transform them from working with names to ids. # with that build a new dict with old stream_name as the key, and StreamPack as the stored value compiled_streams = {} |