2015-01-16 13:52:30 -05:00
|
|
|
package My::Suite::WSREP;
|
|
|
|
|
2020-04-21 18:07:11 +02:00
|
|
|
use lib 'suite';
|
|
|
|
use wsrep::common;
|
2015-01-16 13:52:30 -05:00
|
|
|
|
2020-04-21 18:07:11 +02:00
|
|
|
@ISA = qw(My::Suite);
|
2015-01-16 13:52:30 -05:00
|
|
|
|
2020-04-21 18:07:11 +02:00
|
|
|
return wsrep_not_ok() if wsrep_not_ok();
|
2015-01-16 13:52:30 -05:00
|
|
|
|
2015-01-26 22:43:46 -05:00
|
|
|
push @::global_suppressions,
|
|
|
|
(
|
2015-09-27 19:20:43 -04:00
|
|
|
qr(WSREP: Could not open saved state file for reading: .*),
|
|
|
|
qr(WSREP: Could not open state file for reading: .*),
|
2015-08-14 13:45:52 -04:00
|
|
|
qr|WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)|,
|
2015-01-26 22:43:46 -05:00
|
|
|
);
|
|
|
|
|
2015-01-16 13:52:30 -05:00
|
|
|
bless { };
|