We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b18a915 commit 4204822Copy full SHA for 4204822
syncd/syncd_notifications.cpp
@@ -92,6 +92,19 @@ void redisPutFdbEntryToAsicView(
92
return;
93
}
94
95
+ if ((fdb->event_type == SAI_FDB_EVENT_AGED)||(fdb->event_type == SAI_FDB_EVENT_FLUSHED))
96
+ {
97
+ if (fdb->event_type == SAI_FDB_EVENT_AGED)
98
99
+ SWSS_LOG_DEBUG("remove fdb entry %s for SAI_FDB_EVENT_AGED",key.c_str());
100
+ }
101
+ if (fdb->event_type == SAI_FDB_EVENT_FLUSHED)
102
103
+ SWSS_LOG_DEBUG("remove fdb entry %s for SAI_FDB_EVENT_FLUSHED",key.c_str());
104
105
+ g_redisClient->del(key);
106
+ return;
107
108
for (const auto &e: entry)
109
{
110
const std::string &strField = fvField(e);
0 commit comments