From 3c834bbd88365790d6d5d08cbf74316706943cb0 Mon Sep 17 00:00:00 2001 From: prakashbadri-arista <127355794+prakashbadri-arista@users.noreply.github.com> Date: Sat, 1 Feb 2025 07:37:41 -0800 Subject: [PATCH] Fix for Encap decap test regression (#3735) * Reduce the encap NHG scale to 200 per encap_vrf which brings the total to 800 * revert the previous change * Reduce the encap NHG scale to 200 per encap_vrf which brings the total to 800 --- .../otg_tests/encap_decap_scale/encap_decap_scale_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/feature/gribi/otg_tests/encap_decap_scale/encap_decap_scale_test.go b/feature/gribi/otg_tests/encap_decap_scale/encap_decap_scale_test.go index 886a2554e2e..6b369035c76 100644 --- a/feature/gribi/otg_tests/encap_decap_scale/encap_decap_scale_test.go +++ b/feature/gribi/otg_tests/encap_decap_scale/encap_decap_scale_test.go @@ -107,7 +107,7 @@ const ( teVrf111TunnelCount = 1600 teVrf222TunnelCount = 1600 encapNhCount = 1600 - encapNhgcount = 800 + encapNhgcount = 200 encapIPv4Count = 5000 encapIPv6Count = 5000 decapIPv4Count = 48 @@ -1009,6 +1009,7 @@ func TestGribiEncapDecapScaling(t *testing.T) { // Install decapIPv4ScaleCount entries with fixed prefix length of /32 in DECAP_TE_VRF. decapScaleEntries := iputil.GenerateIPs(IPBlockDecap, decapIPv4ScaleCount) pushDecapScaleEntries(t, args, decapScaleEntries) + // Send traffic and verify packets to DUT-1. createAndSendTrafficFlows(t, args, decapScaleEntries) }