We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2cf9af commit cf10582Copy full SHA for cf10582
tests/archive_test.py
@@ -1929,6 +1929,13 @@ def test_archive_push_sanity(self):
1929
with open(os.path.join(replica.logs_dir, 'postgresql.log'), 'r') as f:
1930
replica_log_content = f.read()
1931
1932
+ # PBCKP-423 - need to clean ptrack warning
1933
+ ptrack_is_not = 'Ptrack 1.X is not supported anymore'
1934
+ if ptrack_is_not in replica_log_content:
1935
+ lines = [line for line in replica_log_content.splitlines()
1936
+ if ptrack_is_not not in line]
1937
+ replica_log_content = "".join(lines)
1938
+
1939
# make sure that .partial file is not compressed
1940
self.assertNotIn('.partial.gz', replica_log_content)
1941
# make sure that .history file is not compressed
0 commit comments