Skip to content

Commit

Permalink
[syncd] Add to handle FDB MOVE notification (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchiang-ec authored Oct 23, 2020
1 parent c7ef5e9 commit a9f69c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syncd/NotificationProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a9f69c1

Please sign in to comment.