diff options
author | Venky Shankar <vshankar@redhat.com> | 2013-08-13 11:02:21 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-09-05 02:33:34 -0700 |
commit | 774e6d162dd826be6357de6112bac5a345790a9e (patch) | |
tree | 162d032c7d0638f24e9b3e7ec76d8fad560ebe15 /geo-replication/syncdaemon/resource.py | |
parent | 3b8b184afe5579425e0e4dcb50dd8dd99d33b63a (diff) |
gsyncd / geo-rep: use the correct virtual xattr to collect 'gfid'
Change-Id: Ifea32ad1b2695f1668428fae6b263014bf320b70
BUG: 996379
Signed-off-by: Venky Shankar <vshankar@redhat.com>
Reviewed-on: http://review.gluster.org/5589
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'geo-replication/syncdaemon/resource.py')
-rw-r--r-- | geo-replication/syncdaemon/resource.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/geo-replication/syncdaemon/resource.py b/geo-replication/syncdaemon/resource.py index 968cd402914..128ea398000 100644 --- a/geo-replication/syncdaemon/resource.py +++ b/geo-replication/syncdaemon/resource.py @@ -398,7 +398,7 @@ class Server(object): @classmethod def gfid(cls, gfidpath): - return errno_wrap(Xattr.lgetxattr, [gfidpath, 'glusterfs.gfid', cls.GX_GFID_CANONICAL_LEN], [ENOENT]) + return errno_wrap(Xattr.lgetxattr, [gfidpath, 'glusterfs.gfid.string', cls.GX_GFID_CANONICAL_LEN], [ENOENT]) @classmethod def node_uuid(cls, path='.'): |