Skip to content

Commit

Permalink
Remove the TODO comment that is no longer relevant. (sonic-net#2732)
Browse files Browse the repository at this point in the history
- What I did
Remove the TODO comment that is no longer relevant.

- Why I did it
To clean up the code and remove non-relevant comments.

- How I verified it
The change doesn't touch the code itself. No additional verification is required.
  • Loading branch information
oleksandrivantsiv authored Apr 13, 2023
1 parent 6b79cea commit 5c43ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchagent/portsorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,7 @@ bool PortsOrch::bindAclTable(sai_object_id_t port_oid,
member_attrs.push_back(member_attr);

member_attr.id = SAI_ACL_TABLE_GROUP_MEMBER_ATTR_PRIORITY;
member_attr.value.u32 = 100; // TODO: double check!
member_attr.value.u32 = 100;
member_attrs.push_back(member_attr);

status = sai_acl_api->create_acl_table_group_member(&group_member_oid, gSwitchId, (uint32_t)member_attrs.size(), member_attrs.data());
Expand Down

0 comments on commit 5c43ed0

Please sign in to comment.