From eca3e5b2328f897cc7d0dfe722215c1b95a039f2 Mon Sep 17 00:00:00 2001 From: Anant <127479400+AnantKishorSharma@users.noreply.github.com> Date: Thu, 18 May 2023 11:53:50 +0530 Subject: [PATCH] mux toggle delay to avoid trigger before config push in test_decap_active_tor (#8167) --- tests/dualtor/test_ipinip.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/dualtor/test_ipinip.py b/tests/dualtor/test_ipinip.py index 4ef354adf9..0498b4d0d8 100644 --- a/tests/dualtor/test_ipinip.py +++ b/tests/dualtor/test_ipinip.py @@ -126,6 +126,7 @@ def stop_garp(ptfhost): ptf_t1_intf = random.choice(get_t1_ptf_ports(tor, tbinfo)) logging.info("send encapsulated packet from ptf t1 interface %s", ptf_t1_intf) + time.sleep(10) with stop_garp(ptfhost): ptfadapter.dataplane.flush() testutils.send(ptfadapter, int(ptf_t1_intf.strip("eth")), encapsulated_packet)