summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2021-08-01 12:27:20 +0200
committerSergei Golubchik <serg@mariadb.org>2021-08-01 18:28:59 +0200
commitec8882b9ddbba2f9fc3571a1ac2ade0dabf412d9 (patch)
tree71aff3bb5f1d123c3731846520d4f9c9025931ff
parentae6bdc6769646a09a8d4d08a42a69174ea677768 (diff)
downloadmariadb-git-ec8882b9ddbba2f9fc3571a1ac2ade0dabf412d9.tar.gz
suppress galera error "Failed to report last committed"
according to MDEV-17550 it's informational, not fatal. "last committed" is part of the certification index purge process. depending on what tests and in what order are run it can be triggered at unspecified times during the testing. If the test is happen to shut down the server at this very time, the log will have: [Warning] WSREP: Failed to report last committed XXXYYYZZZ, -77 (File descriptor in bad state)
-rw-r--r--mysql-test/suite/galera/suite.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/suite/galera/suite.pm b/mysql-test/suite/galera/suite.pm
index 027100fdb30..2ef45b247b2 100644
--- a/mysql-test/suite/galera/suite.pm
+++ b/mysql-test/suite/galera/suite.pm
@@ -65,6 +65,7 @@ push @::global_suppressions,
qr|WSREP: Sending JOIN failed: -107 \(Transport endpoint is not connected\). Will retry in new primary component.|,
qr|WSREP: Trying to continue unpaused monitor|,
qr|WSREP: Wait for gtid returned error 3 while waiting for prior transactions to commit before setting position|,
+ qr|WSREP: Failed to report last committed|,
);
sub which($) { return `sh -c "command -v $_[0]"` }