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:04 -0800 |
commit | 82f20483f753f2da6c1449d739fafa506a424eda (patch) | |
tree | 8bde8b839694e36a724f9d240ac67408d7600093 | |
parent | c817c214033481fe59f9f44c325a9092dc337d07 (diff) |
geo-rep: quick-fix for remote xtime set failed
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/7206
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 0817d7fe775..98a61bc1d75 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 |