Skip to content
Permalink
Browse files
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)
  • Loading branch information
vuvova committed Aug 1, 2021
1 parent ae6bdc6 commit ec8882b
Showing 1 changed file with 1 addition and 0 deletions.
@@ -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]"` }

0 comments on commit ec8882b

Please sign in to comment.