blob: 2ee33d83275014ae8bc43a55b528c4d1daf96cff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package My::Suite::WSREP;
use lib 'suite';
use wsrep::common;
@ISA = qw(My::Suite);
return wsrep_not_ok() if wsrep_not_ok();
push @::global_suppressions,
(
qr(WSREP: Could not open saved state file for reading: .*),
qr(WSREP: Could not open state file for reading: .*),
qr|WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)|,
);
bless { };
|