bridge: Remove traces of flow-eviction-threshold.
authorJoe Stringer <joestringer@nicira.com>
Wed, 30 Apr 2014 21:50:59 +0000 (09:50 +1200)
committerJoe Stringer <joestringer@nicira.com>
Wed, 30 Apr 2014 22:01:58 +0000 (10:01 +1200)
This configuration option was shifted in 2.0, then removed in 2.1.
Remove the misleading log message.

Signed-off-by: Joe Stringer <joestringer@nicira.com>
Acked-by: Ethan Jackson <ethan@nicira.com>
vswitchd/bridge.c

index 84e9ab8..12852b4 100644 (file)
@@ -626,13 +626,6 @@ bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
         bridge_configure_stp(br);
         bridge_configure_tables(br);
         bridge_configure_dp_desc(br);
-
-        if (smap_get(&br->cfg->other_config, "flow-eviction-threshold")) {
-            /* XXX: Remove this warning message eventually. */
-            VLOG_WARN_ONCE("As of June 2013, flow-eviction-threshold has been"
-                           " moved to the Open_vSwitch table.  Ignoring its"
-                           " setting in the bridge table.");
-        }
     }
     free(managers);