From a9f69c1b05b138335de9afb76ac55568e55ae5be Mon Sep 17 00:00:00 2001 From: Vincent Chiang <47546216+vincentchiang-ec@users.noreply.github.com> Date: Sat, 24 Oct 2020 03:33:06 +0800 Subject: [PATCH] [syncd] Add to handle FDB MOVE notification (#670) --- syncd/NotificationProcessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncd/NotificationProcessor.cpp b/syncd/NotificationProcessor.cpp index 42304b7eb030..574631aea530 100644 --- a/syncd/NotificationProcessor.cpp +++ b/syncd/NotificationProcessor.cpp @@ -160,7 +160,7 @@ void NotificationProcessor::redisPutFdbEntryToAsicView( return; } - if (fdb->event_type == SAI_FDB_EVENT_LEARNED) + if (fdb->event_type == SAI_FDB_EVENT_LEARNED || fdb->event_type == SAI_FDB_EVENT_MOVE) { // currently we need to add type manually since fdb event don't contain type sai_attribute_t attr;