Skip to content

Commit

Permalink
Modified the test scritp to pass mandatorty argument priority while c…
Browse files Browse the repository at this point in the history
…reating acl group member
  • Loading branch information
rajneeshaec committed Feb 8, 2024
1 parent 238d1c7 commit 761a0e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ptf/saidebugcounters.py
Original file line number Diff line number Diff line change
Expand Up @@ -2153,7 +2153,7 @@ def setupPortIngresDropAcl(
field_dst_ip=dst_ip,
field_dst_mac=dst_mac)
self.assertTrue(acl_entry != 0, "Failed to Create ACL entry")

priority = 0
acl_table_group = sai_thrift_create_acl_table_group(
self.client,
acl_stage=stage,
Expand All @@ -2162,7 +2162,8 @@ def setupPortIngresDropAcl(
acl_group_member = sai_thrift_create_acl_table_group_member(
self.client,
acl_table_group_id=acl_table_group,
acl_table_id=acl_table_id)
acl_table_id=acl_table_id,
priority=priority)

finally:
acl.append({
Expand Down

0 comments on commit 761a0e8

Please sign in to comment.