You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [PGPRO-5673] add missing grants (caused by CVE-2018-1058fixes#415 PGPRO-5315)
* tests.backup.BackupTest.test_missing_replication_permission_1: fix test for changed 14s output
* tests.backup.BackupTest.test_missing_replication_permission: fix test for 9.5
* tests.checkdb.CheckdbTest.test_checkdb_with_least_privileges: remove grant for nonexistent (in 10) bt_index_check(regclass, bool)
* tests.checkdb.CheckdbTest.test_checkdb_with_least_privileges: remove grant for nonexistent (in 9.5) pg_catalog.pg_control_system()
* tests.checkdb.CheckdbTest.test_checkdb_with_least_privileges: remove grant for nonexistent (in amcheck_next) bt_index_check(regclass)
* adapt tests/restore.py to Python-3.5 (used in travis tests)
* skip issue_313 test
'WARNING: Valid full backup on current timeline 2 is not found, trying to look up on previous timelines',
3400
3404
output)
3401
-
3402
-
self.assertIn(
3403
-
'WARNING: could not connect to database backupdb: FATAL: must be superuser or replication role to start walsender',
3404
-
output)
3405
+
3406
+
# Messages before 14
3407
+
# 'WARNING: could not connect to database backupdb: FATAL: must be superuser or replication role to start walsender'
3408
+
# Messages for >=14
3409
+
# 'WARNING: could not connect to database backupdb: connection to server on socket "/tmp/.s.PGSQL.30983" failed: FATAL: must be superuser or replication role to start walsender'
3410
+
self.assertRegex(
3411
+
output,
3412
+
r'WARNING: could not connect to database backupdb: (connection to server on socket "/tmp/.s.PGSQL.\d+" failed: ){0,1}FATAL: must be superuser or replication role to start walsender')
0 commit comments