diff options
author | Kotresh H R <khiremat@redhat.com> | 2014-03-07 16:35:01 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-03-07 20:14:42 -0800 |
commit | e779cc8c32692112d751571e65a1fb898f500d5b (patch) | |
tree | aa4d24562b31194a2f138cbda5144c89e8023557 | |
parent | 0e8e79350947b9dedd02b1cc2339b8dc42ca599d (diff) |
geo-rep: quick-fix for remote xtime set failedv3.5.0beta4
Remote xtime is required for failover/failback,
this patch is quick fix to avoid the OSError.
Code is masked out, this need to be resolved when
failover/failback is worked on.
Change-Id: If339d88a2ccd8ef18a3b3c015df765c93dcb020c
BUG: 1073844
Signed-off-by: Kotresh H R <khiremat@redhat.com>
Reviewed-on: http://review.gluster.org/7207
Reviewed-by: Aravinda VK <avishwan@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
-rw-r--r-- | geo-replication/syncdaemon/master.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/geo-replication/syncdaemon/master.py b/geo-replication/syncdaemon/master.py index 0817d7fe7..98a61bc1d 100644 --- a/geo-replication/syncdaemon/master.py +++ b/geo-replication/syncdaemon/master.py @@ -150,7 +150,7 @@ class NormalMixin(object): def set_slave_xtime(self, path, mark): self.slave.server.set_stime(path, self.uuid, mark) - self.slave.server.set_xtime_remote(path, self.uuid, mark) + # self.slave.server.set_xtime_remote(path, self.uuid, mark) class PartialMixin(NormalMixin): """a variant tuned towards operation with a master |