Squashed commit of the following:
commit
df59543a5e3e99bef9c809163c6030bdfb042796
Author: Pooja Awasthi <poawasth@cisco.com>
Date: Fri Oct 11 06:07:32 2019 -0400
high_availability:Disabling the inspection if the Flow state is BLOCK
{
if (FlowKey::compare(&key, flow->key, 0) == 0)
{
+ if (flow->flow_state == Flow::FlowState::BLOCK)
+ {
+ flow->disable_inspection();
+ p.disable_inspect = true;
+ }
+
// Clear the standby bit so that we don't immediately trigger a new data store
// FIXIT-L streamline the consume process so this doesn't have to be done here
flow->ha_state->clear(FlowHAState::STANDBY);