From: Ben Pfaff Date: Mon, 13 Aug 2012 17:54:31 +0000 (-0700) Subject: stream-ssl: Change "bootstrap race" log message from ERR to INFO. X-Git-Tag: sliver-openvswitch-1.8.90-0~48^2~56 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=1ee62357e91d08a0bf901830805037680c88eece stream-ssl: Change "bootstrap race" log message from ERR to INFO. This situation can and will happen, and we handle it successfully, so it's not an error. Bug #12922. Reported-by: Scott Hendricks Signed-off-by: Ben Pfaff --- diff --git a/AUTHORS b/AUTHORS index 6d7dc71fd..dee8931f7 100644 --- a/AUTHORS +++ b/AUTHORS @@ -158,6 +158,7 @@ Ramana Reddy gtvrreddy@gmail.com Rob Sherwood rob.sherwood@bigswitch.com Roger Leigh rleigh@codelibre.net Rogério Vinhal Nunes +Scott Hendricks shendricks@nicira.com Sean Brady sbrady@gtfservices.com Sebastian Andrzej Siewior sebastian@breakpoint.cc Sébastien RICCIO sr@swisscenter.com diff --git a/lib/stream-ssl.c b/lib/stream-ssl.c index db7b68e6c..4a9dd4f6a 100644 --- a/lib/stream-ssl.c +++ b/lib/stream-ssl.c @@ -479,7 +479,7 @@ ssl_connect(struct stream *stream) * certificate, but that's more trouble than it's worth. These * connections will succeed the next time they retry, assuming that * they have a certificate against the correct CA.) */ - VLOG_ERR("rejecting SSL connection during bootstrap race window"); + VLOG_INFO("rejecting SSL connection during bootstrap race window"); return EPROTO; } else { return 0;