Skip to content

Commit da514f5

Browse files
authored
Do not update lag mtu from teamsyncd (netlink) (sonic-net#1053)
1 parent 3fb22e1 commit da514f5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

teamsyncd/teamsync.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,8 @@ void TeamSync::addLag(const string &lagName, int ifindex, bool admin_state,
127127
std::vector<FieldValueTuple> fvVector;
128128
FieldValueTuple a("admin_status", admin_state ? "up" : "down");
129129
FieldValueTuple o("oper_status", oper_state ? "up" : "down");
130-
FieldValueTuple m("mtu", to_string(mtu));
131130
fvVector.push_back(a);
132131
fvVector.push_back(o);
133-
fvVector.push_back(m);
134132
m_lagTable.set(lagName, fvVector);
135133

136134
SWSS_LOG_INFO("Add %s admin_status:%s oper_status:%s, mtu: %d",

0 commit comments

Comments
 (0)