We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parenta4308f0 commitfd4b75aCopy full SHA for fd4b75a
tests/replica.py
@@ -980,15 +980,17 @@ def test_archive_replica_not_null_offset(self):
980
"\n Output: {0}\n CMD: {1}".format(
981
repr(self.output),self.cmd))
982
exceptProbackupExceptionase:
983
-self.assertIn(
984
-'LOG: Looking for LSN 0/4000060 in segment: 000000010000000000000004',
+# vanilla -- 0/4000060
+# pgproee -- 0/4000078
985
+self.assertRegex(
986
e.message,
987
+r'LOG: Looking for LSN (0/4000060|0/4000078) in segment: 000000010000000000000004',
988
"\n Unexpected Error Message: {0}\n CMD: {1}".format(
989
repr(e.message),self.cmd))
990
-'INFO: Wait for LSN 0/4000060 in archived WAL segment',
991
992
993
+r'INFO: Wait for LSN (0/4000060|0/4000078) in archived WAL segment',
994
995
996