You've already forked pg_probackup
mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2025-07-14 06:54:15 +02:00
... fix names
This commit is contained in:
@ -1811,14 +1811,14 @@ class ProbackupTest(object):
|
||||
directory_dict['dirs'][directory_relpath] = ContentDir()
|
||||
|
||||
# get permissions for every file and directory
|
||||
for file, cfile in directory_dict['dirs'].items():
|
||||
for dir, cdir in directory_dict['dirs'].items():
|
||||
full_path = os.path.join(pgdata, dir)
|
||||
cdir.mode = os.stat(full_path).st_mode
|
||||
|
||||
for file, cfile in directory_dict['files'].items():
|
||||
full_path = os.path.join(pgdata, file)
|
||||
cfile.mode = os.stat(full_path).st_mode
|
||||
|
||||
for file, cdir in directory_dict['files'].items():
|
||||
full_path = os.path.join(pgdata, file)
|
||||
cdir.mode = os.stat(full_path).st_mode
|
||||
|
||||
return directory_dict
|
||||
|
||||
def get_known_bugs_comparision_exclusion_dict(self, node):
|
||||
|
Reference in New Issue
Block a user