On my system the long delay messages can cause a transient BFD unit test failure due to the log checking. These messages don't *really* need to be at WARN level, so this patch downgrades them.
Signed-off-by: Ethan Jackson <[email protected]> --- lib/bfd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bfd.c b/lib/bfd.c index 3ac257a..4c13084 100644 --- a/lib/bfd.c +++ b/lib/bfd.c @@ -388,7 +388,7 @@ bfd_put_packet(struct bfd *bfd, struct ofpbuf *p, long long int delay = time_msec() - bfd->next_tx; long long int interval = bfd_tx_interval(bfd); if (delay > interval * 3 / 2) { - VLOG_WARN("%s: long delay of %lldms (expected %lldms) sending BFD" + VLOG_INFO("%s: long delay of %lldms (expected %lldms) sending BFD" " control message", bfd->name, delay, interval); } } -- 1.7.9.5 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
