Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/everflow/everflow_test_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -1190,9 +1190,9 @@ def send_and_check_mirror_packets(self,
src_port_metadata_map = {}

if 't2' in setup['topo'] and 'lt2' not in setup['topo'] and 'ft2' not in setup['topo']:
src_port_set.add(src_port)
src_port_metadata_map[src_port] = (None, 1)
if valid_across_namespace is True:
src_port_set.add(src_port)
src_port_metadata_map[src_port] = (None, 1)
# Add the dest_port to src_port_set only in non MACSEC testbed scenarios
if not MACSEC_INFO:
if duthost.facts['switch_type'] == "voq":
Expand Down
3 changes: 2 additions & 1 deletion tests/everflow/test_everflow_testbed.py
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,8 @@ def configure_mirror_session_with_queue(mirror_session, queue_num, erspan_ip_ver
queue,
asic_ns,
recircle_port,
erspan_ip_ver
erspan_ip_ver,
valid_across_namespace=everflow_dut.is_multi_asic,
)
finally:
remote_dut.shell(remote_dut.get_vtysh_cmd_for_namespace(
Expand Down
Loading