diff options
Diffstat (limited to 'geo-replication/syncdaemon/master.py')
| -rw-r--r-- | geo-replication/syncdaemon/master.py | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/geo-replication/syncdaemon/master.py b/geo-replication/syncdaemon/master.py index be8449bec8c..7b8dc9dc821 100644 --- a/geo-replication/syncdaemon/master.py +++ b/geo-replication/syncdaemon/master.py @@ -1390,9 +1390,8 @@ class GMasterXsyncMixin(GMasterChangelogMixin):                  self.sync_done(self.stimes, False)                  self.stimes = []              if stat.S_ISDIR(mo): -                self.write_entry_change("E", [gfid, 'MKDIR', str(mo), str( -                    st.st_uid), str(st.st_gid), escape(os.path.join(pargfid, -                                                                    bname))]) +                self.write_entry_change("E", [gfid, 'MKDIR', str(mo), +                    str(0), str(0), escape(os.path.join(pargfid, bname))])                  self.write_entry_change("M", [gfid, "SETATTR", str(st.st_uid),                                                str(st.st_gid), str(st.st_mode),                                                str(st.st_atime), @@ -1422,8 +1421,7 @@ class GMasterXsyncMixin(GMasterChangelogMixin):                  if nlink == 1:                      self.write_entry_change("E",                                              [gfid, 'MKNOD', str(mo), -                                             str(st.st_uid), -                                             str(st.st_gid), +                                             str(0), str(0),                                               escape(os.path.join(                                                   pargfid, bname))])                  else:  | 
