From e414dc24eb9b4bfb79706ba27eec23d51f8076f2 Mon Sep 17 00:00:00 2001 From: Gord Chen Date: Wed, 15 May 2019 09:49:00 +0800 Subject: [PATCH] [vxlamgr]: Change default return value to true in doTask() to avoid retry the unknown table request --- cfgmgr/vxlanmgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfgmgr/vxlanmgr.cpp b/cfgmgr/vxlanmgr.cpp index 809c763ad9..e9e51d0559 100644 --- a/cfgmgr/vxlanmgr.cpp +++ b/cfgmgr/vxlanmgr.cpp @@ -165,7 +165,7 @@ void VxlanMgr::doTask(Consumer &consumer) auto it = consumer.m_toSync.begin(); while (it != consumer.m_toSync.end()) { - bool task_result = false; + bool task_result = true; auto t = it->second; const std::string & op = kfvOp(t);