From 16ade28d5f8df4da6b5ea5a508dbfb0aabe476c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Sun, 15 Mar 2020 14:57:26 +0100 Subject: [PATCH] CI: Ignore neutron-server CRITICAL about WSREP We are getting this randomly on neutron-server shutdown for upgrade. As it does not affect real operations (and if it did, we would definitely see it now), let's ignore it. Change-Id: Ibe561517d44a1108e8223442a71fab36b69c2258 Related-bug: #1863579 --- tests/check-logs.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/check-logs.sh b/tests/check-logs.sh index 2d8de9d7ba..d1795a9948 100755 --- a/tests/check-logs.sh +++ b/tests/check-logs.sh @@ -26,6 +26,11 @@ function filter_out_expected_critical { # Sometimes we see this during upgrade when keystone is down. grep -v "Failed to fetch token data from identity server" ;; + */neutron-server.log) + # Sometimes we see this during shutdown (upgrade). + # See: https://bugs.launchpad.net/neutron/+bug/1863579 + grep -v "WSREP has not yet prepared node for application use" + ;; *) # We have to provide some pass-through consumer to avoid: # grep: write error: Broken pipe