summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/client/trex_stateless_client.py
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2016-02-03 09:21:10 -0500
committerimarom <imarom@cisco.com>2016-02-03 14:07:14 -0500
commit2887433cb71f43c9bf91226915959f5ebea49869 (patch)
tree70c9e62a9e64a26d71f7dcfabb04e5f22993d353 /scripts/automation/trex_control_plane/client/trex_stateless_client.py
parent7447c92021d7ce3fc0fe115109b54a2f681f2392 (diff)
integration with scapy
Diffstat (limited to 'scripts/automation/trex_control_plane/client/trex_stateless_client.py')
-rwxr-xr-xscripts/automation/trex_control_plane/client/trex_stateless_client.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/automation/trex_control_plane/client/trex_stateless_client.py b/scripts/automation/trex_control_plane/client/trex_stateless_client.py
index 506decfe..ebc9a6ad 100755
--- a/scripts/automation/trex_control_plane/client/trex_stateless_client.py
+++ b/scripts/automation/trex_control_plane/client/trex_stateless_client.py
@@ -929,7 +929,7 @@ class STLClient(object):
def get_stats (self, ports = None, async_barrier = True):
# by default use all ports
if ports == None:
- ports = self.get_all_ports()
+ ports = self.get_acquired_ports()
else:
ports = self.__ports(ports)
@@ -1306,7 +1306,6 @@ class STLClient(object):
try:
streams_db = CStreamsDB()
stream_list = streams_db.load_yaml_file(filename)
-
# convert to new style stream object
streams = [HACKSTLStream(stream) for stream in stream_list.compiled]
except YAMLError: