Commit f23d157c ("ofproto-dpif: Don't poll ports when nothing changes"
changed how cfm information is propagated to ovsdb, but did not ensure
that this happened when users made "appctl cfm/set_fault" calls. This
patch fixes this case.Signed-off-by: Joe Stringer <[email protected]> --- lib/cfm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cfm.c b/lib/cfm.c index 8ba0c44..18a3750 100644 --- a/lib/cfm.c +++ b/lib/cfm.c @@ -1034,6 +1034,7 @@ cfm_unixctl_set_fault(struct unixctl_conn *conn, int argc, const char *argv[], } } + seq_change(connectivity_seq_get()); unixctl_command_reply(conn, "OK"); out: -- 1.7.9.5 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
