mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2024-11-24 08:52:38 +02:00
... fix names
This commit is contained in:
parent
1617eb34ec
commit
440441dc6f
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user