diff options
Diffstat (limited to 'resources/libraries/python/TRexConfigGenerator.py')
-rw-r--r-- | resources/libraries/python/TRexConfigGenerator.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/libraries/python/TRexConfigGenerator.py b/resources/libraries/python/TRexConfigGenerator.py index 2015b09ad2..5ecde86dcb 100644 --- a/resources/libraries/python/TRexConfigGenerator.py +++ b/resources/libraries/python/TRexConfigGenerator.py @@ -244,7 +244,7 @@ class TrexInitConfig: latency_thread_id = None cores = None limit_memory = f"{Constants.TREX_LIMIT_MEMORY}" - sockets = 0 + sockets = list() for link in tg_topology: pci_addresses.append( @@ -264,8 +264,8 @@ class TrexInitConfig: dst_mac=link["dst_mac"] ) ) - sockets = sockets | socket - if sockets: + sockets.append(socket) + if 0 in sockets and 1 in sockets: limit_memory = ( f"{Constants.TREX_LIMIT_MEMORY},{Constants.TREX_LIMIT_MEMORY}" ) |