CI: Add ProxySQL exception to check-logs.sh

After switching to ProxySQL as default we see following logs:
CRITICAL neutron [None req-c214fdae-5da7-402d-92b0-0572c278a5b5 - - - - - -] Unhandled error: sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError) (9001, 'Max connect timeout reached while reaching hostgroup 0 after 10150ms')

Mainly in upgrade jobs, which otherwise pass successfuly - just fail on this
check.

Change-Id: I4336ec62a0a2dfbe815842f1bacb02135bcf4c0e
This commit is contained in:
Michal Nasiadka 2024-10-24 15:42:53 +02:00
parent cffaa89831
commit 49cebeaf4d

View File

@ -44,7 +44,8 @@ function filter_out_expected_critical {
# See: https://bugs.launchpad.net/neutron/+bug/1863579
grep -v "Unhandled error: oslo_db.exception.DBConnectionError" |
grep -v "WSREP has not yet prepared node for application use" |
grep -v "Failed to fetch token data from identity server"
grep -v "Failed to fetch token data from identity server" |
grep -v "Max connect timeout reached while reaching hostgroup"
;;
*)
# Sometimes we see this during upgrades of Keystone.