Skip to content

Commit

Permalink
Hack : Don't flush zones.
Browse files Browse the repository at this point in the history
Signed-off-by: Numan Siddique <nusiddiq@redhat.com>
  • Loading branch information
numansiddique committed Jul 19, 2023
1 parent e06f75b commit bc7171b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions controller/ofctrl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2613,9 +2613,15 @@ ofctrl_put(struct ovn_desired_flow_table *lflow_table,
SHASH_FOR_EACH(iter, pending_ct_zones) {
struct ct_zone_pending_entry *ctzpe = iter->data;
if (ctzpe->state == CT_ZONE_OF_QUEUED) {
/* HACK for testing only*/
#if 0
add_ct_flush_zone(ctzpe->zone, &msgs);
ctzpe->state = CT_ZONE_OF_SENT;
ctzpe->of_xid = 0;
#else
ctzpe->state = CT_ZONE_DB_QUEUED;
#endif

}
}

Expand Down

0 comments on commit bc7171b

Please sign in to comment.