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 a42ebbf commit be339bfCopy full SHA for be339bf
tests/archive.py
@@ -578,12 +578,12 @@ def test_archive_push_partial_file_exists(self):
578
backup_dir, 'node',
579
options=['--recovery-target-xid={0}'.format(xid)])
580
581
- # log_file = os.path.join(node.logs_dir, 'postgresql.log')
582
- # with open(log_file, 'r') as f:
583
- # log_content = f.read()
584
- # self.assertIn(
585
- # 'Reusing stale destination temporary WAL file',
586
- # log_content)
+ log_file = os.path.join(node.logs_dir, 'postgresql.log')
+ with open(log_file, 'r') as f:
+ log_content = f.read()
+ self.assertIn(
+ 'Reusing stale destination temporary WAL file',
+ log_content)
587
588
# Clean after yourself
589
self.del_test_dir(module_name, fname)
0 commit comments