File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1848,13 +1848,13 @@ bool MACsecOrch::createMACsecSA(
1848
1848
1849
1849
if (direction == SAI_MACSEC_DIRECTION_EGRESS)
1850
1850
{
1851
- attr.id = SAI_MACSEC_SA_ATTR_XPN ;
1851
+ attr.id = SAI_MACSEC_SA_ATTR_CONFIGURED_EGRESS_XPN ;
1852
1852
attr.value .u64 = pn;
1853
1853
attrs.push_back (attr);
1854
1854
}
1855
1855
else
1856
1856
{
1857
- attr.id = SAI_MACSEC_SA_ATTR_MINIMUM_XPN ;
1857
+ attr.id = SAI_MACSEC_SA_ATTR_MINIMUM_INGRESS_XPN ;
1858
1858
attr.value .u64 = pn;
1859
1859
attrs.push_back (attr);
1860
1860
}
Original file line number Diff line number Diff line change 2
2
import conftest
3
3
4
4
import sys
5
- import pytest
6
5
import functools
7
6
import typing
8
7
import re
@@ -588,7 +587,6 @@ def deinit_macsec(
588
587
macsec_port_identifier ))
589
588
wpa .deinit_macsec_port (port_name )
590
589
591
- @pytest .mark .skip ("Skip to be removed after macsec orch is made compatible to SAI v1.8.0" )
592
590
def test_macsec_term_orch (self , dvs : conftest .DockerVirtualSwitch , testlog ):
593
591
port_name = "Ethernet0"
594
592
local_mac_address = "00-15-5D-78-FF-C1"
You can’t perform that action at this time.
0 commit comments