This reverts commit 0ba2e1a2e2c413f057ac198e4c2bcf00ac40b19f. System tests with "dp-groups=yes" are all failing due to the warning log. Need to investigate why the warning appears. But before that is clear, revert this log level change to make CI pass.
Cc: Ilya Maximets <[email protected]> Signed-off-by: Han Zhou <[email protected]> --- controller/lflow.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/controller/lflow.c b/controller/lflow.c index b8424e1fb..680b8cca1 100644 --- a/controller/lflow.c +++ b/controller/lflow.c @@ -916,9 +916,8 @@ consider_logical_flow(const struct sbrec_logical_flow *lflow, bool ret = true; if (!dp_group && !dp) { - static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 1); - VLOG_WARN_RL(&rl, "lflow "UUID_FMT" has no datapath binding, skip", - UUID_ARGS(&lflow->header_.uuid)); + VLOG_DBG("lflow "UUID_FMT" has no datapath binding, skip", + UUID_ARGS(&lflow->header_.uuid)); return true; } ovs_assert(!dp_group || !dp); -- 2.30.2 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
