From a2a8e8ba5308205dd0cd2c703b0c673003142390 Mon Sep 17 00:00:00 2001 From: Abhishek Dosi Date: Sat, 21 Feb 2026 02:55:12 +0000 Subject: [PATCH] When Interface detect overlap ip return sucess instead of failure so to avoid OA keep on retrying and dumping continuous syslogs. Signed-off-by: Abhishek Dosi --- orchagent/intfsorch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchagent/intfsorch.cpp b/orchagent/intfsorch.cpp index 062df729..784ca6ee 100644 --- a/orchagent/intfsorch.cpp +++ b/orchagent/intfsorch.cpp @@ -591,7 +591,7 @@ bool IntfsOrch::setIntf(const string& alias, sai_object_id_t vrf_id, const IpPre if (overlaps) { /* Overlap of IP address network */ - return false; + return true; } }